mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-05 17:09:22 +01:00
18 lines
361 B
Bash
18 lines
361 B
Bash
# This is ~/.bash_aliases file by Mika Suomalainen (Mkaysi)
|
|
|
|
# Moving between directories:
|
|
alias ..="cd .."
|
|
alias .="cd ."
|
|
|
|
# As you can see, I don't use/like Vi(m) :)
|
|
alias editor="nano"
|
|
alias vi="nano"
|
|
alias vim="nano"
|
|
|
|
# Use htop instead of top, it's better. Requires htop.
|
|
alias top="htop"
|
|
|
|
# Automatic title to Youtube-dl
|
|
alias youtube-dl="youtube-dl -t"
|
|
|