Last active
August 29, 2015 14:01
-
-
Save AlekseiCherkes/838e55dc8bbadf94ac68 to your computer and use it in GitHub Desktop.
This file contains 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
### In Ubuntu this file is enabled in .bashrc | |
## Alias definitions. | |
## You may want to put all your additions into a separate file like | |
## ~/.bash_aliases, instead of adding them here directly. | |
## See /usr/share/doc/bash-doc/examples in the bash-doc package. | |
# if [ -f ~/.bash_aliases ]; then | |
# . ~/.bash_aliases | |
# fi | |
### My .bash_aliases content | |
alias sudo='sudo ' # allow aliases in sudo | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CFl' # My changes: -l | |
alias docker='docker.io' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment