如何使用GNU Parallel使用包装函数在所有* .sh上运行shellcheck?
此尝试具有正确的目标文件,但Parallel似乎在子外壳方面遇到了困难。
lint:sh() {
local output
targets=$(find . -name '*.sh' -exec echo {} \;)
output=$(parallel --no-notice shellcheck ::: "$targets")
results $? "$output"
}
答案 0 :(得分:1)
使用以下方法:
lint:sh() {
local output
output=$(find . -name "*.sh" -print0 | parallel -q0 --no-notice shellcheck)
...
}
答案 1 :(得分:0)
由于bash的不同缺陷,最安全的方法可能是
targets=()
while read -r -d '' file; [[ $file ]]; do
targets+=("$file");
done < <(find . -name '*.sh' -print0)
还因为targets
类型已更改为数组
output=$(parallel --no-notice shellcheck ::: "${targets[@]}")