Skip to content

Instantly share code, notes, and snippets.

@ejschmitt
Created May 27, 2009 22:08
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 ejschmitt/118941 to your computer and use it in GitHub Desktop.
Save ejschmitt/118941 to your computer and use it in GitHub Desktop.
alias xclip='pbcopy'
alias c='xclip'
alias cdc='pwd | c'
alias p='pbpaste'
alias cdp='cd `p`'
alias clr='clear'
-------
alias c='xclip -selection c'
alias cdc='pwd | c'
alias p='xclip -o -selection c'
alias cdp='cd `p`'
alias clr='clear'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment