Closed rpdelaney closed 1 year ago
bash handles "$@" more intelligently than one might expect. See docs: https://www.shellcheck.net/wiki/SC2068:
"$@"
Double quotes around $@ (and similarly, ${array[@]}) prevents globbing and word splitting of individual elements, while still expanding to multiple separate arguments.
$@
${array[@]}
Fixes #65
cc @nathantypanski
@nathantypanski Any chance this can get merged? :)
Looks good to me.
bash handles
"$@"
more intelligently than one might expect. See docs: https://www.shellcheck.net/wiki/SC2068:Fixes #65