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.
|
|