├── 01.awk ├── 02.awk ├── 03.awk ├── 04.awk ├── 05.awk ├── 06.awk ├── 07.awk ├── 08.awk ├── 09.awk ├── 10.awk ├── 11.awk ├── 12.awk ├── 13.awk ├── 14.awk ├── 15-awk.sh ├── 16.awk ├── 17.awk ├── 18.awk ├── LICENSE ├── README.md ├── Slides for Awk- Hack the planet['s text] - 2023 Update.pdf ├── Slides for Awk- Hack the planet['s text].pdf ├── generate-payroll.rb ├── netflix.tsv ├── order-compl.txt ├── payroll.tsv └── server.sh /01.awk: -------------------------------------------------------------------------------- 1 | /Janitor/ { print $3 } 2 | -------------------------------------------------------------------------------- /02.awk: -------------------------------------------------------------------------------- 1 | $6 ~ /^CEO$/ { printf("%s, %s\n", $2, $1) } 2 | -------------------------------------------------------------------------------- /03.awk: -------------------------------------------------------------------------------- 1 | $7 ~ /^1993.04.16$/ { print } 2 | -------------------------------------------------------------------------------- /04.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/04.awk -------------------------------------------------------------------------------- /05.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/05.awk -------------------------------------------------------------------------------- /06.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/06.awk -------------------------------------------------------------------------------- /07.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/07.awk -------------------------------------------------------------------------------- /08.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/08.awk -------------------------------------------------------------------------------- /09.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/09.awk -------------------------------------------------------------------------------- /10.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/10.awk -------------------------------------------------------------------------------- /11.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/11.awk -------------------------------------------------------------------------------- /12.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/12.awk -------------------------------------------------------------------------------- /13.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/13.awk -------------------------------------------------------------------------------- /14.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/14.awk -------------------------------------------------------------------------------- /15-awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/15-awk.sh -------------------------------------------------------------------------------- /16.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/16.awk -------------------------------------------------------------------------------- /17.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/17.awk -------------------------------------------------------------------------------- /18.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/18.awk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/README.md -------------------------------------------------------------------------------- /Slides for Awk- Hack the planet['s text] - 2023 Update.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/Slides for Awk- Hack the planet['s text] - 2023 Update.pdf -------------------------------------------------------------------------------- /Slides for Awk- Hack the planet['s text].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/Slides for Awk- Hack the planet['s text].pdf -------------------------------------------------------------------------------- /generate-payroll.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/generate-payroll.rb -------------------------------------------------------------------------------- /netflix.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/netflix.tsv -------------------------------------------------------------------------------- /order-compl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/order-compl.txt -------------------------------------------------------------------------------- /payroll.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/payroll.tsv -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/HEAD/server.sh --------------------------------------------------------------------------------