ubuntu: add aliases

This commit is contained in:
Marco D'Agostini 2020-09-17 16:23:07 -05:00
parent 86d3dd4a17
commit a400ee4d10

View File

@ -56,6 +56,16 @@ zle -N copy-earlier-word
bindkey "^[:" copy-earlier-word bindkey "^[:" copy-earlier-word
``` ```
### Aliases
```bash
alias lr="ls -hartl"
alias youtube-dl720='youtube-dl -f "bestvideo[height<=720]+bestaudio/best[height<=720]"'
alias python=python3
alias ipython=ipython3
function mkcd () { mkdir -p "$@" && cd "$@"; }
```
### Enable most ### Enable most
```bash ```bash