带有shellcheck的GNU Parallel对多个文件

时间:2018-06-26 05:57:28

标签: bash gnu-parallel shellcheck

如何使用GNU Parallel使用包装函数在所有* .sh上运行shellcheck?

此尝试具有正确的目标文件,但Parallel似乎在子外壳方面遇到了困难。

lint:sh() {
  local output
  targets=$(find . -name '*.sh' -exec echo {} \;)
  output=$(parallel --no-notice shellcheck ::: "$targets")
  results $? "$output"
}

2 个答案:

答案 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[@]}")