Updated Sc2086 (markdown)

koalaman
2015-04-29 18:23:53 -07:00
parent 5e107b9c05
commit 23109aebbf

@@ -22,7 +22,7 @@ Sometimes you want to split on spaces, like when building a command line.
options="-j 5 -B" options="-j 5 -B"
make $options file 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) options=(-j 5 -B)
make "${options[@]}" file make "${options[@]}" file