From 23109aebbf40a014baffe4a1b8d958f26171ceb1 Mon Sep 17 00:00:00 2001 From: koalaman Date: Wed, 29 Apr 2015 18:23:53 -0700 Subject: [PATCH] Updated Sc2086 (markdown) --- Sc2086.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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