I am using #AWK for only one command.

ia tasks | awk -F "identifier" "{s+=(NF-1)} END {print s}"

It counts my Internet Archive tasks that are currently running.

Now that I have a new computer, I didn't want to install AWK for just one command. I asked Claude to write me the same command for PowerShell.

(ia tasks | ForEach-Object { ($_ -split "identifier").Count - 1 } | Measure-Object -Sum).Sum

Sad to say goodby to AWK. It was very useful to me three jobs ago.