[go: up one dir, main page]

Menu

[r79]: / README.DEVEL  Maximize  Restore  History

Download this file

34 lines (28 with data), 585 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
===========================================================
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