for循环参数列表通过命令行读入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环参数列表通过命令行读入相关的知识,希望对你有一定的参考价值。
1 #通过命令行来传递脚本中for循环列表参数 2 #!/bin/bash 3 4 echo "number of arguments is $#" 5 6 echo "What you input is " 7 8 #通过命令行来传递脚本for循环的参数列表 9 for argument in "$*" 10 do 11 echo "$argument" 12 done 执行结果 [ ]$ ./forargument.sh 12 34 "love" number of arguments is 3 What you input is 12 34 love
以上是关于for循环参数列表通过命令行读入的主要内容,如果未能解决你的问题,请参考以下文章