From 978d1460a50e029b96f6928a57d0357bdbc2e40c Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Sun, 6 Jun 2021 13:13:12 -0500 Subject: [PATCH] Bashrc.wiki: update config sourcing discussion --- Bashrc.wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bashrc.wiki b/Bashrc.wiki index 1696971..5856414 100644 --- a/Bashrc.wiki +++ b/Bashrc.wiki @@ -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