Last active
August 29, 2015 14:11
-
-
Save mdvorscak/9b3d7bab69cb24005655 to your computer and use it in GitHub Desktop.
My 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
| alias ..='cdl ..' | |
| alias ...='cdl ../..' | |
| alias ....='cdl ../../..' | |
| alias .....='cdl ../../../..' | |
| alias .4='cdl ../../../../' | |
| alias .5='cdl ../../../../..' | |
| alias cim='vim' | |
| alias root='sudo su' | |
| alias v='vim' | |
| alias la='ls -A' | |
| alias get='sudo apt-get install' | |
| alias path='echo -e ${PATH//:/\\n}' | |
| alias now='date +"%T' | |
| alias nowtime=now | |
| alias nowdate='date +"%d-%m-%Y"' | |
| # Stop after sending count ECHO_REQUEST packets # | |
| alias ping='ping -c 5' | |
| # Do not wait interval 1 second, go fast # | |
| alias fastping='ping -c 100 -s.2' | |
| alias xclip='xclip -selection c' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment