0

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?

anijhaw
  • 8,954
  • 7
  • 35
  • 36
  • You should stay with sh/bash/ksh family of bourne-compatible shells... have a look at : [link]http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/ – Olivier Dulac Nov 30 '12 at 17:31

1 Answers1

1

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

radical7
  • 8,957
  • 3
  • 24
  • 33