Skip to content

Instantly share code, notes, and snippets.

@jessicard
Created September 6, 2012 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jessicard/3658495 to your computer and use it in GitHub Desktop.
Save jessicard/3658495 to your computer and use it in GitHub Desktop.
Command Line Tutorials Xargs and Cut
ls | xargs cat
ls -la | cut -f 1 -d " "
ps aux | grep rails
ls -la | cut -c 1 | grep d | wc -l
ls ~/*.txt | xargs -pI text_file mv text_file ~/.temp_txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment