diff options
Diffstat (limited to 'source/a/minicom/doinst.sh')
-rw-r--r-- | source/a/minicom/doinst.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/a/minicom/doinst.sh b/source/a/minicom/doinst.sh index f667412ed..5961829bc 100644 --- a/source/a/minicom/doinst.sh +++ b/source/a/minicom/doinst.sh @@ -1,11 +1,11 @@ #!/bin/sh config() { NEW="$1" - OLD="`dirname $NEW`/`basename $NEW .new`" + 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 + 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... |