diff options
| author | Abigail <abigail@abigail.be> | 2021-03-15 14:27:47 +0100 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-03-15 20:21:44 +0100 |
| commit | e149d24da503c8ffef7c4d9eb78ef69546d35196 (patch) | |
| tree | 297b97b579aec5a55f1673c4d4a43c4b6804d31e /challenge-104/abigail/bash | |
| parent | 17819b37061916eb8e8d5cafee65df39cd82980a (diff) | |
| download | perlweeklychallenge-club-e149d24da503c8ffef7c4d9eb78ef69546d35196.tar.gz perlweeklychallenge-club-e149d24da503c8ffef7c4d9eb78ef69546d35196.tar.bz2 perlweeklychallenge-club-e149d24da503c8ffef7c4d9eb78ef69546d35196.zip | |
AWK, Bash and C solution for week 104, part 1
Diffstat (limited to 'challenge-104/abigail/bash')
| -rw-r--r-- | challenge-104/abigail/bash/ch-1.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/challenge-104/abigail/bash/ch-1.sh b/challenge-104/abigail/bash/ch-1.sh new file mode 100644 index 0000000000..8dde31977a --- /dev/null +++ b/challenge-104/abigail/bash/ch-1.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +# +# See ../README.md +# + +# +# Run as: bash ch-1.sh +# + +echo "0 1 1 2 1 3 2 3 1 4 3 5 2 5 3 4 1 5 4 7 3 8 5 7 2 7 "\ +"5 8 3 7 4 5 1 6 5 9 4 11 7 10 3 11 8 13 5 12 7 9 2 9" |
