diff options
-rwxr-xr-x | qr | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,7 +67,7 @@ done shift $(($OPTIND - 1)) -img="$(tempfile --suffix .png)" +img="$(mktemp --suffix .png)" trap "rm -f '$img'" EXIT @@ -86,7 +86,7 @@ elif [ "$have_msg" -eq 0 ]; then fi if [ "$#" -eq 0 ]; then - stdin="$(tempfile)" + stdin="$(mktemp)" trap "rm -f '$img' '$stdin'" EXIT cat > "$stdin" set -- "$stdin" |