diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2021-01-23 22:09:01 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-23 22:09:01 +0000 |
| commit | efa08f1c70928d4b4f59ee48b0014f88eca8ee89 (patch) | |
| tree | a01fe9a6d4f517d19f3b54b1d85c543b38efd3b2 /challenge-096/abigail/awk | |
| parent | d233c279f0b2a12111925caeb4298f2884f3d5f1 (diff) | |
| parent | 1c9975a4c79a02569f92310cf5e30ccd2b542033 (diff) | |
| download | perlweeklychallenge-club-efa08f1c70928d4b4f59ee48b0014f88eca8ee89.tar.gz perlweeklychallenge-club-efa08f1c70928d4b4f59ee48b0014f88eca8ee89.tar.bz2 perlweeklychallenge-club-efa08f1c70928d4b4f59ee48b0014f88eca8ee89.zip | |
Merge pull request #3357 from Abigail/abigail/week-096
Abigail/week 096
Diffstat (limited to 'challenge-096/abigail/awk')
| -rwxr-xr-x[-rw-r--r--] | challenge-096/abigail/awk/ch-1.awk | 10 | ||||
| -rwxr-xr-x[-rw-r--r--] | challenge-096/abigail/awk/ch-2.awk | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/challenge-096/abigail/awk/ch-1.awk b/challenge-096/abigail/awk/ch-1.awk index 744c154648..dae5328b5f 100644..100755 --- a/challenge-096/abigail/awk/ch-1.awk +++ b/challenge-096/abigail/awk/ch-1.awk @@ -1,3 +1,13 @@ +#!/usr/bin/awk + +# +# See ../README.md +# + +# +# Run as: awk -f ch-1.awk < input-file +# + # # AWK splits lines on whitespace, making each field available # in $1, $2, ..., etc. So, we just print the fields in reverse, diff --git a/challenge-096/abigail/awk/ch-2.awk b/challenge-096/abigail/awk/ch-2.awk index 08cebccb4e..9d3c9fb492 100644..100755 --- a/challenge-096/abigail/awk/ch-2.awk +++ b/challenge-096/abigail/awk/ch-2.awk @@ -1,3 +1,13 @@ +#!/usr/bin/awk + +# +# See ../README.md +# + +# +# Run as: awk -f ch-2.awk < input-file +# + # # Return the minimum of 3 values # |
