diff options
Diffstat (limited to 'makelabel.sh')
-rwxr-xr-x | makelabel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makelabel.sh b/makelabel.sh index 123f3a4..dbc984e 100755 --- a/makelabel.sh +++ b/makelabel.sh @@ -3,7 +3,7 @@ target="$1" xoffset=$2 yoffset=$3 zoffset=$4 -while read -N 1 c;do +while read -rN 1 c;do name="$(printf "%02x" "'$c")" if [ "$name" = "0a" ]; then xoffset=-6 |