In /usr/bin/eps2eps line 7: gs="`dirname \"$0\"`/$GS_EXECUTABLE" ^--------------^ SC2006: Use $(...) notation instead of legacy backticked `...`. Did you mean: gs="$(dirname \"$0\")/$GS_EXECUTABLE" In /usr/bin/eps2eps line 24: echo "Usage: `basename \"$0\"` ...switches... input.eps output.eps" 1>&2 ^---------------^ SC2006: Use $(...) notation instead of legacy backticked `...`. Did you mean: echo "Usage: $(basename \"$0\") ...switches... input.eps output.eps" 1>&2 In /usr/bin/eps2eps line 28: exec "$GS_EXECUTABLE" -q -sDEVICE=eps2write -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH -P- -dSAFER $OPTIONS "$1" ^------^ SC2086: Double quote to prevent globbing and word splitting. Did you mean: exec "$GS_EXECUTABLE" -q -sDEVICE=eps2write -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH -P- -dSAFER "$OPTIONS" "$1" For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... https://www.shellcheck.net/wiki/SC2006 -- Use $(...) notation instead of le...