From 20267504cae2ab5ec910b245e5d6d014a1341ce8 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 30 May 2015 15:02:55 -0400 Subject: run_test.sh: Remove unnecessary backslashes I just assumed you needed backslash line continuation markers when creating arrays in Bash. Turns out I was wrong and they're not needed. Remove them because in addition the the preceding they're also an eyesore. --- run_test.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/run_test.sh b/run_test.sh index 9ddba76..a0278d8 100755 --- a/run_test.sh +++ b/run_test.sh @@ -1,14 +1,14 @@ #!/bin/sh -exercises=( \ - /#divide/ \ - /#hello5/ \ - /#hello_x_times/ \ - /#string_plus/ \ - /#join_reverse_array/ \ - /#array_tack_join/ \ - /Table/ \ - /Table2#height_times2/ \ +exercises=( + /#divide/ + /#hello5/ + /#hello_x_times/ + /#string_plus/ + /#join_reverse_array/ + /#array_tack_join/ + /Table/ + /Table2#height_times2/ ) if [ $# -lt 1 ]; then -- cgit v1.2.3