Skip to content

Instantly share code, notes, and snippets.

@bitmori
Created November 5, 2015 04:43
Show Gist options
  • Select an option

  • Save bitmori/96a8023e0c63cc5d36cf to your computer and use it in GitHub Desktop.

Select an option

Save bitmori/96a8023e0c63cc5d36cf to your computer and use it in GitHub Desktop.
pbcopy & pbpaste
# output -> clipboard
$ ls | pbcopy
# clipboard -> save to file
$ pbpaste > ls.txt
# transform contents in clipboard. rot13:
$ pbpaste | tr 'a-zA-Z' 'n-za-mN-ZA-M' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment