diff options
author | Ian C <ianc@noddybox.co.uk> | 2020-09-09 08:30:31 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2020-09-09 08:30:31 +0000 |
commit | 1181836197e84133bb1740901683208b5b1bbf09 (patch) | |
tree | 05fc3af4e575448759393322e228ada167be5515 | |
parent | 67cfd5f29688f21cb93e1c1d2ed5d4f526a3500c (diff) |
Fixed usage error.
-rwxr-xr-x | ansi2unicode.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ansi2unicode.sh b/ansi2unicode.sh index 210b8b9..2272ab9 100755 --- a/ansi2unicode.sh +++ b/ansi2unicode.sh @@ -3,10 +3,10 @@ # Convert code page ANSI file to UTF-16 LE # -_=$(basename $0) +NAME=$(basename $0) if [ -z "$1" ] ; then - echo $_ : usage $_ file ... + echo $NAME : usage $NAME file ... exit 1 fi |