Created
September 21, 2013 22:26
-
-
Save mdmarek/6654808 to your computer and use it in GitHub Desktop.
How to use the cut command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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