Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
timbit42
on Jan 22, 2020
|
parent
|
context
|
favorite
| on:
Why Learn Awk? (2016)
echo ' 1 2 3' | tr -s ' ' | cut -b 2- | cut -d' ' -f2
or
echo ' 1 2 3' | tr -s ' ' '\t' | cut -b 2- | cut -f2
Consider applying for YC's Spring batch! Applications are open till Feb 11.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
or
echo ' 1 2 3' | tr -s ' ' '\t' | cut -b 2- | cut -f2