aports/main/bash/bashrc
2022-04-12 16:36:52 +00:00

15 lines
268 B
Bash

# Do not edit this file.
# Place your readable configs in /etc/profile.d/*.sh
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
if [ -d /etc/profile.d/ ]; then
for f in /etc/profile.d/*.sh; do
[ -r "$f" ] && . "$f"
done
unset f
fi