diff options
| author | Abigail <abigail@abigail.be> | 2021-06-06 22:35:21 +0200 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-06-06 22:35:21 +0200 |
| commit | bfea5eb744e289db3050c4dbd85ad59695c9d854 (patch) | |
| tree | ca329b61db7cd0fc12175df4d74cc24b1125d93c | |
| parent | 2fed574178675ba5e0cf2519e2696340ee608eed (diff) | |
| download | perlweeklychallenge-club-bfea5eb744e289db3050c4dbd85ad59695c9d854.tar.gz perlweeklychallenge-club-bfea5eb744e289db3050c4dbd85ad59695c9d854.tar.bz2 perlweeklychallenge-club-bfea5eb744e289db3050c4dbd85ad59695c9d854.zip | |
Use "set -f" for our bash solutions in week 115
| -rw-r--r-- | challenge-115/abigail/bash/ch-1.sh | 1 | ||||
| -rw-r--r-- | challenge-115/abigail/bash/ch-2.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/challenge-115/abigail/bash/ch-1.sh b/challenge-115/abigail/bash/ch-1.sh index 989e4d1cce..06cab4514f 100644 --- a/challenge-115/abigail/bash/ch-1.sh +++ b/challenge-115/abigail/bash/ch-1.sh @@ -8,6 +8,7 @@ # Run as: bash ch-1.sh < input-file # +set -f declare -A nodes declare -A graph diff --git a/challenge-115/abigail/bash/ch-2.sh b/challenge-115/abigail/bash/ch-2.sh index 3da1e61c2b..b708d0b53b 100644 --- a/challenge-115/abigail/bash/ch-2.sh +++ b/challenge-115/abigail/bash/ch-2.sh @@ -8,6 +8,7 @@ # Run as: bash ch-2.sh < input-file # +set -f declare -a digits while read -a input |
