From: Michal MalĂ˝ Date: Mon, 29 Dec 2014 16:17:47 +0000 (+0100) Subject: Handle strings in a more secure manner in the tex2ima script X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=b32b2eb5f2eac9500fd918d17745f5f2e5f7023f;p=Nine-Q.git Handle strings in a more secure manner in the tex2ima script --- diff --git a/bin/tex2ima b/bin/tex2ima index eed8844..7e056a5 100755 --- a/bin/tex2ima +++ b/bin/tex2ima @@ -24,8 +24,8 @@ color2="black" while getopts o:s: Options; do case $Options in - s) TEXCODE=$OPTARG;; - o) outfile=$OPTARG;; + s) TEXCODE="$OPTARG";; + o) outfile="$OPTARG";; esac; done