diff --git a/Sc2086.md b/Sc2086.md index 466945d..786fd75 100644 --- a/Sc2086.md +++ b/Sc2086.md @@ -22,7 +22,7 @@ Sometimes you want to split on spaces, like when building a command line. options="-j 5 -B" make $options file -Just quoting this doesn't work. Instead, you should have used an array (bash): +Just quoting this doesn't work. Instead, you should have used an array (bash, ksh): options=(-j 5 -B) make "${options[@]}" file