Y
Hacker News
new
|
ask
|
show
|
jobs
by
pedro84
2395 days ago
This is a little more awk-ish:
awk -F, '$2 == "F" {$0=(($1-32)*5/9)",C"} {print}'
1 comments
dvrx
2395 days ago
I love awk too but most people don't know much of awk. Better use regular things and keep awk for whenever you absolutely need it.
link