diff options
author | B. Watson <yalhcru@gmail.com> | 2014-04-27 10:18:18 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-04-27 12:15:43 -0500 |
commit | a8f4e457f484a80469cbcc3f47760f3a6c51c589 (patch) | |
tree | d671300904f666e8927e9d9059b4257468540c90 /system/csh/doinst.sh | |
parent | 9db9d22c508fdc1a15d638d406025755c756f515 (diff) |
system/csh: Added (C shell from BSD)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system/csh/doinst.sh')
-rw-r--r-- | system/csh/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/system/csh/doinst.sh b/system/csh/doinst.sh new file mode 100644 index 0000000000000..5dec6bfce4c54 --- /dev/null +++ b/system/csh/doinst.sh @@ -0,0 +1,19 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/csh.login.new + +# If there's no csh link, take over: +if [ ! -r bin/csh ]; then + ( cd bin ; ln -sf ../usr/bin/csh csh ) +fi |