Bashrc.wiki: update config sourcing discussion

This commit is contained in:
David Thurstenson 2021-06-06 13:13:12 -05:00
parent f4369c8197
commit 978d1460a5
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ Another cool option is actually built in to bash: If you call for a directory wi
shopt -s autocd
}}}
This is where all the other utilities, aliases, and functions get pulled in. Anything in `~/.bashrc.d/` ending in `.sh` will get pulled in.
This is where all the other utilities, aliases, and functions get pulled in. Anything in `~/.bashrc.d/` ending in `.bash` will get pulled in.
{{{class="prettyprint"
for f in ~/.bashrc.d/*.bash; do source "$f"; done