由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - unix高手请进
相关主题
[转载] How to print this?a silly question?
菜鸟问题:请问如何编辑运行 Unix下的批处理?which shell is the best among csh, ksh, bsh?
紧急请教:Unix的ls命令各位大哥,哪儿有免费的
UNIX SHELL 下中文在unix 下,光曲不能弹出。只能从起,再拿盘。请教。
Shell ScriptHelp, 学unix看什么书好呢?
帮帮忙,用C作一个SHELLKorn shell script
bad root shell?请高手推荐一到2本UNIX Shell Programming 的经典书
为什么我就是不会写Shell script?如何实现下列功能?
相关话题的讨论汇总
话题: shell话题: inside话题: 参数话题: use话题: 请进
进入Unix版参与讨论
1 (共1页)
c**c
发帖数: 36
1
批处理的脚本文件,
$1代表第一个输入参数
单引号'...'内如果要用$1这个参数,不能直接用$1,
因为这样$1不会被替换成参数。
那么应该如何表达?
d*****g
发帖数: 36
2
Use " ...." instead of '...', simply because they are interpreted by SHELL
differently.
Inside ' ......', SHELL will only inteprets as string directly. Inside "....",
SHELL will
first replace those $1 or $.. as the real value.

【在 c**c 的大作中提到】
: 批处理的脚本文件,
: $1代表第一个输入参数
: 单引号'...'内如果要用$1这个参数,不能直接用$1,
: 因为这样$1不会被替换成参数。
: 那么应该如何表达?

b*********a
发帖数: 28
3
use '.....' $1 '.....'
should also work

【在 d*****g 的大作中提到】
: Use " ...." instead of '...', simply because they are interpreted by SHELL
: differently.
: Inside ' ......', SHELL will only inteprets as string directly. Inside "....",
: SHELL will
: first replace those $1 or $.. as the real value.

1 (共1页)
进入Unix版参与讨论
相关主题
如何实现下列功能?Shell Script
my homework for UNIX shell高手, thanks!!!帮帮忙,用C作一个SHELL
questionbad root shell?
unix shell help?为什么我就是不会写Shell script?
[转载] How to print this?a silly question?
菜鸟问题:请问如何编辑运行 Unix下的批处理?which shell is the best among csh, ksh, bsh?
紧急请教:Unix的ls命令各位大哥,哪儿有免费的
UNIX SHELL 下中文在unix 下,光曲不能弹出。只能从起,再拿盘。请教。
相关话题的讨论汇总
话题: shell话题: inside话题: 参数话题: use话题: 请进