如何在新的交互式shell中执行pre命令?
例:为了模仿tcsh
中的bash -O globstar
,我们可以做tcsh
但是,set globstar
不会工作,因为它不会离开交互式shell。执行命令后立即退出。
我需要它在远程机器上运行一个脚本,在那里我不能修改任何tcsh -c 'set globstar'
文件
假设脚本如下
0 > cat run
echo foo/**
使用
rc
我可以执行以下操作 0 > bash -O globstar run
foo/ foo/bar foo/bar/foo foo/bar/foo/bar
我正在寻找一个
bash
等价物,如下所示(显然它不会工作,因为tcsh
不会运行我的程序) 0 > tcsh -c 'set globstar' run
我知道
tcsh
和bash -c
是一样的。我正在寻找一个等效的tcsh -c
即使它是为有限的选择。注:这只是以下问题的
bash -O
版本。run bash command in new shell and stay in new shell after this command executes
最佳答案
如果正在运行脚本,您可以通过简单地添加set option
来设置任何选项,就像在启动文件中一样:
#!/usr/bin/env tcsh
set globstar
# .. your code ..
对于Makefile,同样的事情也应该有效:
SHELL=/bin/tcsh
all:
set noglobstar
set
除此之外,除了更改启动文件之外,没有其他简单的方法可以做到这一点。就我在手册页中所能找到的,在启动时没有设置选项的开关,不幸的是tcsh也不允许用命令行参数更改启动文件的位置。
为了避免更改单个用户的启动文件,您可以将更改放入系统范围的
/etc/csh.cshrc
。从tcsh(1)
: Startup and shutdown
A login shell begins by executing commands from the system files
/etc/csh.cshrc and /etc/csh.login. It then executes commands from
files in the user's home directory: first ~/.tcshrc (+) or, if
~/.tcshrc is not found, ~/.cshrc, then the contents of ~/.history (or
the value of the histfile shell variable) are loaded into memory, then
~/.login, and finally ~/.cshdirs (or the value of the dirsfile shell
variable) (+). The shell may read /etc/csh.login before instead of
after /etc/csh.cshrc, and ~/.login before instead of after ~/.tcshrc or
~/.cshrc and ~/.history, if so compiled; see the version shell vari‐
able. (+)
Non-login shells read only /etc/csh.cshrc and ~/.tcshrc or ~/.cshrc on
startup.
关于linux - 在新的交互式tcsh shell中执行命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52456389/