Hacker News new | ask | show | jobs
by xorcist 310 days ago
There are invalid column separators for awk too. To handle consecutive spaces in cut you have squeeze them:

  echo '999  888' | tr -s " " | cut -f2 -d " "