Skip to content

Instantly share code, notes, and snippets.

@lukin0110
Last active December 13, 2015 18:08
Show Gist options
  • Select an option

  • Save lukin0110/4953370 to your computer and use it in GitHub Desktop.

Select an option

Save lukin0110/4953370 to your computer and use it in GitHub Desktop.
Bash aliases
# Some handy aliases
alias subl='sublime-text-2'
# http://stackoverflow.com/questions/5130968/how-can-i-copy-the-output-of-a-command-directly-into-my-clipboard
clipboard() { cat $1 | xclip -selection clipboard; printf "Harr harr, clipped!\nPaste with ctrl+v ...\n"; }
alias clip=clipboard
alias distro='printf "Shebang: ";uname -a;printf "\nArchitecture: ";uname -m; printf "\n"; lsb_release -a;printf "\n";'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment