Files
ports/main/filesystem/bashrc
2021-08-06 22:47:47 +08:00

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