argument.sh
资源名称:src.rar [点击查看]
上传用户:cqgdffbw
上传日期:2021-04-27
资源大小:17k
文件大小:0k
源码类别:
驱动编程
开发平台:
Unix_Linux
- #!/bin/bash
- echo "shell file name is $0"
- echo "shell argument number is $#"
- echo "shell argument is $*"
- echo "shell argument is $@"
- echo "The tenth argument is ${10}"
- for i in $*
- do
- echo $i
- done
- for i in "$*"
- do
- echo $i
- done