First working version !
This commit is contained in:
42
etc/envmng.d/shell
Normal file
42
etc/envmng.d/shell
Normal file
@@ -0,0 +1,42 @@
|
||||
# $RCSfile: shell,v $
|
||||
# $Revision: 1.1 $
|
||||
# $Name: $
|
||||
# $Date: 2009/01/12 17:59:03 $
|
||||
# $Author: agibert $
|
||||
|
||||
case $BASH in
|
||||
*bash)
|
||||
shell=$BASH
|
||||
;;
|
||||
|
||||
*)
|
||||
shell=/usr/bin/ksh
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
|
||||
case "$shell"-$1 in
|
||||
*ksh-*profile)
|
||||
export ENV=$envmng_prefix/etc/envmng_rc
|
||||
;;
|
||||
|
||||
*bash-*profile)
|
||||
export ENV=$envmng_prefix/etc/envmng_rc
|
||||
;;
|
||||
|
||||
*ksh-*rc)
|
||||
alias __A=
|
||||
alias __B=
|
||||
alias __C=
|
||||
alias __D=
|
||||
;;
|
||||
|
||||
*bash-*rc)
|
||||
;;
|
||||
|
||||
|
||||
*)
|
||||
echo "$0: Invalid command: [$1] !"
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user