Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Awk proficient [18.awk]: There is a simpler solution. #10

Open
StefanoRausch opened this issue Aug 11, 2024 · 0 comments
Open

Awk proficient [18.awk]: There is a simpler solution. #10

StefanoRausch opened this issue Aug 11, 2024 · 0 comments

Comments

@StefanoRausch
Copy link

Thank you so much for your Youtube videos and the challenges! I enjoyed them while finally learning Awk.

Your solution 18.awk is interesting. This is my alternative approach:

#!/usr/bin/awk -f

BEGIN { FS = "\t"; first = 20240811; name = "Employee"; started = "Date" }

{ date = $7; gsub("/", "", $7); if ($7 < first) { first = $7; name = $1 " " $2; started = date } }

END { printf("The first employee hired was %s on %s.\n", name, started) }

I like simplicity. 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant