从 bash 运行 csh 脚本,通过命令临时更改 shell
我需要从 bash shell 运行 csh 脚本,因此通过命令临时更改为 tcsh。它在交互模式下工作得很好,但我无法用一行命令弄清楚。 因此,在交互模式下,我在 bash shell 中执行以下操作:
tcsh
source my.tcshr
useMyTcshCmd
等。
我如何在 1 个命令中完成所有这些操作? 抱歉新手问题...
I need to run csh scripts from a bash shell and therefore temporary change to tcsh via a command. It works perfect in interactive mode but i cant figure out in a one line command.
So in interactive mode i do in the bash shell:
tcsh
source my.tcshr
useMyTcshCmd
etc.
How can i do all of this in 1 command?
Sorry for the newbie question...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
结果:
所以这应该有效:
Result:
So this should work:
您应该直接在脚本中指定解释器:
然后只需运行脚本:
You should specify the interpreter directly in the script:
And then simply run the script: