mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
14 lines
184 B
Bash
Executable File
14 lines
184 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
|