mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-24 12:45:11 +02:00
11 lines
220 B
Bash
11 lines
220 B
Bash
# /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
|