Timothy White wrote: > [1] The problem part.... > for file in $*; do You want $@: $ cat foo.sh #! /bin/sh for x in "$@"; do echo $x done $ sh foo.sh "bar" "baz quux" bar baz quux