minix/etc/profile
2025-05-30 22:49:16 -07:00

17 lines
271 B
Bash
Executable File

#
# System-wide .profile file for sh(1).
# MINIX specifics
# Set library path
export LD_LIBRARY_PATH="/lib:/usr/lib:/usr/X11R7/lib:/usr/pkg/lib:/usr/local/lib"
# Set the timezone
export TZ=GMT0
RC_TZ=/etc/rc.timezone
if [ -f ${RC_TZ} ]; then
. ${RC_TZ}
fi
export TZ