Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包装器运行脚本让我们称之为 wrap_app.sh 它所做的只是调用一些二进制文件
./mybinary --run-test --run-allnew "$@"
现在当我调用它时,我可以在 bash 中为它提供额外的参数
./wrap_app.sh --run-new-arg
这些参数将传递给 mybinary
现在我正在尝试在 csh 中做同样的事情,但它似乎不起作用。
任何人都可以在 csh 中提供 $@ 的等价物吗?
在tcsh脚本的参数列表中是$*
tcsh
$*