Re: numtosxg.sh
nutosxg.sh trips on “08â€, “09â€, and numbers starting with them because they get treated as octal. Stripping leading zeroes from input (for example by changing n="$1"
to n="$(echo $1 | sed -r 's/^0+//')"
) prevents it.
Comment