Files
lfs-script_s/ports/core/bash/bashrc
2023-11-07 22:37:25 +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