Files
ports/core/filesystem/bashrc
2019-06-11 22:56:03 +08:00

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