void-packages/srcpkgs/bash/files/bashrc

12 lines
220 B
Bash
Raw Normal View History

2015-06-23 17:17:09 +02:00
# /etc/bash/bashrc
# Do not edit this file.
# Place your readable configs in /etc/bash/bashrc.d/*.sh
if [ -d /etc/bash/bashrc.d/ ]; then
for f in /etc/bash/bashrc.d/*.sh; do
[ -r "$f" ] && . "$f"
done
unset f
fi