aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/bash/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'repos/extra/bash/bashrc')
-rw-r--r--repos/extra/bash/bashrc11
1 files changed, 11 insertions, 0 deletions
diff --git a/repos/extra/bash/bashrc b/repos/extra/bash/bashrc
new file mode 100644
index 00000000..3da30286
--- /dev/null
+++ b/repos/extra/bash/bashrc
@@ -0,0 +1,11 @@
+# /etc/bashrc
+
+alias ls='ls --color=auto'
+alias grep='grep --color=auto'
+
+if [ -d /etc/bashrc.d/ ]; then
+ for f in /etc/bashrc.d/*.sh; do
+ [ -r "$f" ] && . "$f"
+ done
+ unset f
+fi