假设我将一些数据读入 Bash 数组:
$ IFS=" " read -a arr <<< "hello/how are/you iam/fine/yeah"
现在,我想为/
数组中的每个元素打印第一个切片字段。
我所做的是遍历元素并使用 shell 参数扩展从第一个剥离所有内容/
:
$ for w in "${arr[@]}"; do echo "${w%%/*}"; done
hello
are
iam
但是,sinceprintf
允许我们在单个表达式中打印数组的全部内容:
$ printf "%s\n" "${arr[@]}"
hello/how
are/you
iam/fine
...我想知道是否有一种方法可以在使用时使用 shell 参数扩展${w%%/*}
,printf
而不是循环遍历所有元素并对每个元素执行此操作。