variable=abc,def,ghij
我想使用for循环提取所有值(abc,def和ghij),并将每个值传递给一个过程。
脚本应允许从$ variable中提取任意数量的逗号分隔值。
variable=abc,ghij for i in $(echo $variable | sed "s/,/ /g") do # call your procedure/other scripts here below echo "$i" done
而不是回调“$ i”调用上面的do和do之间的for循环,你可以调用你的程序proc“$ i”。
希望这可以帮助。