>>204
https://github.com/koalaman/shellcheck/wiki/SC2086

こうやりたいのなら
options="-j 5 -B"
make $options file

こうやればいい
make_with_flags() { make -j 5 -B "$@"; }
make_with_flags file


配列はやっぱり、いらんのよなぁ