blob: d351e505746a43283ee1a9020e560d68dd38a060 (
plain)
1
2
3
4
5
6
7
8
|
if fgrep tcsh etc/shells 1> /dev/null 2> /dev/null ; then
GOOD=y
else
echo "/bin/tcsh" >> etc/shells
echo "/bin/csh" >> etc/shells
fi
( cd bin ; rm -rf csh )
( cd bin ; ln -sf tcsh csh )
|