Reputation: 9422
I have a wrapper run script lets call it wrap_app.sh All it does is call some binary
./mybinary --run-test --run-allnew "$@"
Now when I invoke it I can provide it additional arguments in bash
./wrap_app.sh --run-new-arg
and these arguments will be passed to mybinary
Now I am trying to do the same thing in csh and it doesn't seem to be working.
Can Anybody provide the equivalent for $@ in csh?
Upvotes: 0
Views: 523