D**e 发帖数: 10169 | 1 use csh or tcsh. alias won't work in sh. |
t*******l 发帖数: 421 | 2 那你怎么不早点出来!
哦,刚看到,你是"瘸子:!
谢谢啦.告诉我怎么办?
我是个执著的人,说对了.:) |
D**e 发帖数: 10169 | 3 你得拿定主意到底用什么壳。别一会C壳一会SH壳的。
the first line of your script specifies the shell which will be used by this
script.
#!/bin/sh
#!/bin/csh
#!/bin/tcsh
change the first line of your script to csh or tcsh. alias will work but other
things may
start crashing.
【在 t*******l 的大作中提到】 : 那你怎么不早点出来! : 哦,刚看到,你是"瘸子:! : 谢谢啦.告诉我怎么办? : 我是个执著的人,说对了.:)
|
t*******l 发帖数: 421 | 4 改成了西壳,还是不行。
快帮我想办法:))
【在 D**e 的大作中提到】 : 你得拿定主意到底用什么壳。别一会C壳一会SH壳的。 : the first line of your script specifies the shell which will be used by this : script. : #!/bin/sh : #!/bin/csh : #!/bin/tcsh : change the first line of your script to csh or tcsh. alias will work but other : things may : start crashing.
|
D**e 发帖数: 10169 | 5 it must work.
try this(that is single qoute, not back-qoute):
#!/bin/tcsh
alias t 'ls -1'
t;
this
other
【在 t*******l 的大作中提到】 : 改成了西壳,还是不行。 : 快帮我想办法:))
|
t*******l 发帖数: 421 | 6 it works when not in the script.
【在 D**e 的大作中提到】 : it must work. : try this(that is single qoute, not back-qoute): : #!/bin/tcsh : alias t 'ls -1' : t; : : this : other
|
D**e 发帖数: 10169 | 7 kidding me? check for typo.
【在 t*******l 的大作中提到】 : it works when not in the script.
|
t*******l 发帖数: 421 | 8 no kidding.
any alias works well when no in my script.
I logout and log back in, still doesn't work.
sorry for this tough problem :)))
【在 D**e 的大作中提到】 : kidding me? check for typo.
|
f***y 发帖数: 98 | 9 it does work in for sh
【在 D**e 的大作中提到】 : use csh or tcsh. alias won't work in sh.
|