由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 生成script文件的问题
相关主题
how to run background process after logoutshell programming问题:如何同时run多个作业
关于cxterm的问题Change shell to tcsh?
Re: how to change all the files .cpp to .C.cshrc?.login?.profile?
[转载] About the historybash 彩色 shell prompt
如何单步执行shell?如何在当前目录下查找替换一个串?
which shell is best?how to redirect error output under unix
how to let awk not print?[转载] 再请教高手
equivilent $REMOTEHOST in ksh[转载] 请教高手
相关话题的讨论汇总
话题: script话题: tcsh话题: 文件话题: tome话题: 生成
进入Unix版参与讨论
1 (共1页)
F***Q
发帖数: 6599
1
我想生成一个最简单的script文件,就是改变一下当前目录,比如
nedit tome
然后键入
#!/bin/tcsh
cd /afs/thayer/nmlhome/fangq
然后保存文件,
chmod +x tome
然后执行的时候什么都不显示,也没有改变目录,
另外一个最简单的;例子:
#!bin/tcsh
echo $1
执行的时候也没有显示第一个参数,什么反应也没有,请问是什么原因?
俺是在aix的tcsh下
m*****e
发帖数: 4193
2
It changes the dir in the script; but it doesn't affect your current shell.
You can do:
. your_script
This will execute the script inside current shell.

【在 F***Q 的大作中提到】
: 我想生成一个最简单的script文件,就是改变一下当前目录,比如
: nedit tome
: 然后键入
: #!/bin/tcsh
: cd /afs/thayer/nmlhome/fangq
: 然后保存文件,
: chmod +x tome
: 然后执行的时候什么都不显示,也没有改变目录,
: 另外一个最简单的;例子:
: #!bin/tcsh

F***Q
发帖数: 6599
3
加.是不是source?
能不能不用source呢?

【在 m*****e 的大作中提到】
: It changes the dir in the script; but it doesn't affect your current shell.
: You can do:
: . your_script
: This will execute the script inside current shell.

m*****e
发帖数: 4193
4

yes
alias your_script='. your_script'
No other way as I know of.

【在 F***Q 的大作中提到】
: 加.是不是source?
: 能不能不用source呢?

F***Q
发帖数: 6599
5
thanks!

【在 m*****e 的大作中提到】
:
: yes
: alias your_script='. your_script'
: No other way as I know of.

1 (共1页)
进入Unix版参与讨论
相关主题
[转载] 请教高手如何单步执行shell?
how to escape both ' and " from tcsh?which shell is best?
what are the differnces between unix shell?how to let awk not print?
请教CRON DEAMONequivilent $REMOTEHOST in ksh
how to run background process after logoutshell programming问题:如何同时run多个作业
关于cxterm的问题Change shell to tcsh?
Re: how to change all the files .cpp to .C.cshrc?.login?.profile?
[转载] About the historybash 彩色 shell prompt
相关话题的讨论汇总
话题: script话题: tcsh话题: 文件话题: tome话题: 生成