摘要: bash [options] [command_string | file] -c If then -c option is present, then commands are read from the first non-option argument command_string. If t 阅读全文
posted @ 2023-01-23 12:46 ascertain 阅读(79) 评论(0) 推荐(0)
摘要: for param #!/usr/bin/env -vS bash for param;do echo $param done for ${!i} #!/usr/bin/env -vS bash for ((i=1;i<=$#;++i)); do echo ${!i} done $* $@ shif 阅读全文
posted @ 2023-01-23 11:27 ascertain 阅读(33) 评论(0) 推荐(0)