K 10 svn:author V 6 dteske K 8 svn:date V 27 2016-12-12T21:04:11.320545Z K 7 svn:log V 279 Fix invalid parameter expansion (change $@ to "$@") Without quotes, $@ loses its special meanining (see below) % sh -c 'echo $@' /bin/sh " 1 " " 2 " 1 2 % sh -c 'echo "$@"' /bin/sh " 1 " " 2 " 1 2 The quotes are required to get ARGV to be unperterped END