[go: up one dir, main page]

Menu

Tree [r81] /
 History

HTTPS access


File Date Author Commit
 bin 2006-04-15 ctaf [r78] cygwin
 etc 2006-04-15 ctaf [r80]
 AUTHORS 2006-04-09 ctaf [r55]
 ChangeLog 2006-04-15 ctaf [r79] cygwin
 README 2006-04-12 ctaf [r66] pre 0.3.0
 README.DEVEL 2006-04-12 ctaf [r66] pre 0.3.0
 TODO 2006-04-15 ctaf [r81]
 VERSION 2006-04-12 ctaf [r66] pre 0.3.0
 ctafconf-configuration 2005-10-08 u38928862 [r1]
 ctafconf-install 2005-10-08 u38928862 [r1]
 ctafconf-uninstall 2005-10-08 u38928862 [r1]

Read Me

===========================================================
GUIDELINE:
all file in ctafconf/etc must be static (user should not edit them, program should not add file into)
all file in ctafconf/perso must not be overwritten and are user specific

===========================================================
POSIX
--sh
if cmp -s $SRCFILE $FILE; then
fi
export al=val
alias al=val
var=val
source

--tcsh
if ( -x file ) echo cool
setenv al val
alias al val
set var val

--ksh
export al=val
alias al=val
var=val

--zsh
if cmp -s $SRCFILE $FILE; then
fi
export al=val
alias al=val
var=val