
csh script command line args
news:3A7E1583.A16B6A0B@yahoo.com...
This is not specific to csh.
It works exactly as you specified it. It just doesn't produce the output
you expected.
Wildcards are expanded by the shell (unless you have globbing turned off),
so your shell script will be parsed however many arguments that *.h matches.
You just need to change your script to use $@ or $*