1# $NetBSD: profile,v 1.1 1997/06/21 06:07:39 mikel Exp $ 2# 3# System-wide .profile file for sh(1). 4 5# MINIX specifics 6# Set library path 7export LD_LIBRARY_PATH="/lib:/usr/lib:/usr/X11R7/lib:/usr/pkg/lib:/usr/local/lib" 8 9# Set the timezone 10export TZ=GMT0 11RC_TZ=/etc/rc.timezone 12 13if [ -f ${RC_TZ} ]; then 14 . ${RC_TZ} 15fi 16 17export TZ 18