From cf04e7a8a4676a3f17cd7c03116152f91c7605b8 Mon Sep 17 00:00:00 2001 From: "Brock A. Martin" Date: Sat, 23 Jul 2016 13:05:59 -0500 Subject: [PATCH] Removed temporary file generation --- qr2asc.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/qr2asc.sh b/qr2asc.sh index 8ead0e5..1aeb7ca 100755 --- a/qr2asc.sh +++ b/qr2asc.sh @@ -33,15 +33,6 @@ if [ $# -lt 1 ]; then exit 1 fi -# Create a temp file to use as a pattern for splitting the input key file. -# This helps protect against file collisions in the current directory. -export TMPDIR="" -tmp_file=$(mktemp keyparts.XXXXXX) -if [ $? -ne 0 ]; then - echo "failed to create temporary file" - exit 1 -fi - # For each image on the command line, decode it into text chunks=() index=1