mirror of
https://github.com/emmett1/lfs-scripts.git
synced 2026-01-12 07:57:01 +00:00
12 lines
180 B
Bash
Executable File
12 lines
180 B
Bash
Executable File
# /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
|