diff options
author | Karel Kočí <cynerd@email.cz> | 2021-04-08 11:13:49 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2021-04-08 11:13:49 +0200 |
commit | 3eae2889cd0c50621b7219dc1c6b79f488b90021 (patch) | |
tree | 9030973b389ad30decc2b40b0a87a62307bee611 /bashrc.d | |
parent | bdbceacf4c2070912ad4875ff6d901e667b6a5f4 (diff) | |
download | shellrc-3eae2889cd0c50621b7219dc1c6b79f488b90021.tar.gz shellrc-3eae2889cd0c50621b7219dc1c6b79f488b90021.tar.bz2 shellrc-3eae2889cd0c50621b7219dc1c6b79f488b90021.zip |
Move most of the shellrc files outside of /etcv0.8.0
The /etc is not updated automatically as that is place for configuration
files. Deploying it to different location makes a lot of more sense.
Diffstat (limited to 'bashrc.d')
-rw-r--r-- | bashrc.d/shellrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc.d/shellrc b/bashrc.d/shellrc index 9aef21c..e938444 100644 --- a/bashrc.d/shellrc +++ b/bashrc.d/shellrc @@ -1,5 +1,5 @@ # vim: ft=sh -for sh in /etc/shellrc.d/*; do +for sh in /usr/share/shellrc/*; do [ -r "$sh" ] && . "$sh" done |