Skip to content

Instantly share code, notes, and snippets.

@mdmarek
Created September 21, 2013 22:26
Show Gist options
  • Save mdmarek/6654808 to your computer and use it in GitHub Desktop.
Save mdmarek/6654808 to your computer and use it in GitHub Desktop.
How to use the cut command
# Use white space as delimiter and return the 1st
# field and all fields including and after the
# 7th field.
cut -d' ' -f1,7-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment