Last active
December 13, 2015 18:08
-
-
Save lukin0110/4953370 to your computer and use it in GitHub Desktop.
Bash aliases
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
| # 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