44 lines
1.8 KiB
Plaintext
44 lines
1.8 KiB
Plaintext
|
# $RCSfile: system,v $
|
||
|
# $Revision: 1.1 $
|
||
|
# $Name: $
|
||
|
# $Date: 2009/01/12 17:59:03 $
|
||
|
# $Author: agibert $
|
||
|
|
||
|
path=/usr/bin:/opt/ansic/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/nettladm/bin:/opt/fc/bin:/opt/fcms/bin:/opt/upgrade/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/hparray/bin:/opt/perf/bin:/opt/ignite/bin:/opt/OV/bin/OpC:/opt/resmon/bin:/opt/pred/bin:/opt/langtools/bin:/opt/imake/bin:/opt/aCC/bin:/opt/cxperf/bin:/opt/scr/bin:/opt/graphics/common/bin:/opt/STK/bin:/opt/seos/bin
|
||
|
|
||
|
shlib_path=/usr/lib
|
||
|
|
||
|
manpath=/usr/share/man/%L:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man:/opt/upgrade/share/man/%L:/opt/upgrade/share/man:/usr/dt/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/hparray/share/man/%L:/opt/hparray/share/man:/opt/ignite/share/man/%L:/opt/ignite/share/man:/opt/perf/man/%L:/opt/perf/man:/opt/OV/man/itose/%L:/opt/OV/man/itose:/opt/resmon/share/man:/opt/pred/share/man/%L:/opt/pred/share/man:/opt/mqm/man:/opt/audio/share/man:/opt/blinklink/share/man:/opt/ansic/share/man/%L:/opt/ansic/share/man:/opt/langtools/share/man/%L:/opt/langtools/share/man:/opt/imake/man:/opt/aCC/share/man/%L:/opt/aCC/share/man:/opt/cxperf/share/man:/opt/scr/share/man:/opt/graphics/common/man:/opt/EMCpower/share:/opt/STK/share/man
|
||
|
|
||
|
|
||
|
|
||
|
case "$1" in
|
||
|
*profile)
|
||
|
export PATH=$(envmng_path_add "$PATH" "$path")
|
||
|
export SHLIB_PATH=$(envmng_path_add "$SHLIB_PATH" "$shlib_path")
|
||
|
export MANPATH=$(envmng_path_add "$MANPATH" "$manpath")
|
||
|
|
||
|
if [ "$DISPLAY" = "" ]
|
||
|
then
|
||
|
export DISPLAY="$($grep "^$LOGNAME:" $envmng_display | $sed -e "s/^$LOGNAME:[ \ ]*//" -e "s/[ \ ]*#.*$//"):0"
|
||
|
fi
|
||
|
|
||
|
stty erase ^?
|
||
|
stty kill ^U
|
||
|
stty eol ^@
|
||
|
stty susp ^Z
|
||
|
stty intr ^C
|
||
|
# stty rprnt ^R
|
||
|
stty werase ^W
|
||
|
stty lnext ^V
|
||
|
;;
|
||
|
|
||
|
*rc)
|
||
|
alias ls=ls
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "$0: Invalid command: [$1] !"
|
||
|
;;
|
||
|
esac
|