e******r 发帖数: 220 | 1 what is the meaning of this little shell program? Please help me.
Especially, what is the function of "tcsh" command?
echo "begin $*"
if ("$1" != "")then
shift
tcsh script.sh $*
endif
echo "end"
fi | j*c 发帖数: 97 | 2 opening a tc-shell and running the script script.sh in the shell.
【在 e******r 的大作中提到】 : what is the meaning of this little shell program? Please help me. : Especially, what is the function of "tcsh" command? : echo "begin $*" : if ("$1" != "")then : shift : tcsh script.sh $* : endif : echo "end" : fi
|
|