mirror of
git://slackware.nl/current.git
synced 2025-02-06 20:46:02 +01:00
9 lines
191 B
Bash
9 lines
191 B
Bash
![]() |
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 )
|