where SuoENV.ksh is a bash shell script
So are you using $* in your script where you should be using "$@" ?
$ cat wrapper #!/bin/bash perl -le'print for @ARGV' $* perl -le'print for @ARGV' "$@" $ ./wrapper foo "a b c" foo a b c foo a b c
- tye
In reply to Re^3: sudo ignoring string entry after first space encountered ("$@")
by tye
in thread sudo ignoring string entry after first space encountered
by perl197
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |