awk-hack-the-planet
awk-hack-the-planet copied to clipboard
Source code repo for Ben Porter (FreedomBen)'s free course on Awk (originally a talk at Linux Fest Northwest 2019 and 2020)
## Description There is two problematic rows in the previous file. Rerunnig the script and recreating the `payroll.tsv` file solves the issue. ## Issue found Trying to solve the question...
- variable are implicitly initialized to 0 or "" - NR == 1 represents the header line
Thank you so much for your Youtube videos and the challenges! I enjoyed them while finally learning Awk. Your solution [18.awk](https://github.com/FreedomBen/awk-hack-the-planet/blob/master/18.awk) is interesting. This is my alternative approach: ``` #!/usr/bin/awk...
Hey ! thx for this great repo. I am finally learning awk and habing fun ! NOt really an issue but maybe add a warning to users. I struggled to...