argument.sh
上传用户:cqgdffbw
上传日期:2021-04-27
资源大小:17k
文件大小:0k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. #!/bin/bash
  2. echo "shell file name is $0" 
  3. echo "shell argument number is $#"
  4. echo "shell argument is $*"
  5. echo "shell argument is $@"
  6. echo "The tenth argument is ${10}"
  7. for i in $* 
  8. do
  9. echo $i
  10. done
  11. for i in "$*"
  12. do
  13. echo $i
  14. done