diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-12 22:54:20 +0530 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-12 22:54:20 +0530 |
commit | 92944006e728ade7338db81ef81c27716b247c81 (patch) | |
tree | 3c04bee89943d8adeb2ff66e2e5c2ea344698785 /src/config/files/shell/.bashrc | |
parent | 141bdfee6f9d6b8e36d3b78d4dcc1c05a414736b (diff) |
Update shell configuration
Diffstat (limited to 'src/config/files/shell/.bashrc')
-rw-r--r-- | src/config/files/shell/.bashrc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/config/files/shell/.bashrc b/src/config/files/shell/.bashrc new file mode 100644 index 0000000..2161b13 --- /dev/null +++ b/src/config/files/shell/.bashrc @@ -0,0 +1,16 @@ +# .bashrc + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +# User specific aliases and functions +if [ -d ~/.bashrc.d ]; then + for rc in ~/.bashrc.d/*; do + if [ -f "$rc" ]; then + . "$rc" + fi + done +fi +unset rc |