在shell脚本之间传递参数,但保留引号

前端之家收集整理的这篇文章主要介绍了在shell脚本之间传递参数,但保留引号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将一个shell脚本的所有参数传递给另一个?我试过$ *,但正如我所料,如果你引用的参数,这不工作。

例:

  1. $ cat script1.sh
  2.  
  3. #! /bin/sh
  4. ./script2.sh $*
  5.  
  6. $ cat script2.sh
  7.  
  8. #! /bin/sh
  9. echo $1
  10. echo $2
  11. echo $3
  12.  
  13. $ script1.sh apple "pear orange" banana
  14. apple
  15. pear
  16. orange

我想打印出来:

  1. apple
  2. pear orange
  3. banana
使用“$ @”而不是$ *来保留引号:
  1. ./script2.sh "$@"

更多信息:

http://tldp.org/LDP/abs/html/internalvariables.html

$*
All of the positional parameters,seen as a single word

Note: “$*” must be quoted.

$@
Same as $*,but each parameter is a quoted string,that is,the
parameters are passed on intact,without interpretation or expansion.
This means,among other things,that each parameter in the argument
list is seen as a separate word.

Note: Of course,“$@” should be quoted.

猜你在找的Bash相关文章