anijhaw
anijhaw

Reputation: 9422

Passing Arguments from wrapper script to the binary being called in cshell

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

Answers (1)

radical7
radical7

Reputation: 9124

In tcsh the list of arguments to a script is $*

Upvotes: 1

Related Questions