2011-08-12 22:15:14 +02:00
|
|
|
# This is ~/.bash_aliases file by Mika Suomalainen (Mkaysi)
|
|
|
|
|
2011-08-13 12:02:01 +02:00
|
|
|
# Moving between directories:
|
2011-08-12 22:15:14 +02:00
|
|
|
alias ..="cd .."
|
|
|
|
alias .="cd ."
|
2011-08-13 12:02:01 +02:00
|
|
|
|
|
|
|
# As you can see, I don't use/like Vi(m) :)
|
2011-08-12 22:15:14 +02:00
|
|
|
alias editor="nano"
|
2011-08-13 12:02:01 +02:00
|
|
|
alias vi="nano"
|
|
|
|
alias vim="nano"
|
|
|
|
|
|
|
|
# Use htop instead of top, it's better. Requires htop.
|
|
|
|
alias top="htop"
|
|
|
|
|
2011-08-14 17:40:24 +02:00
|
|
|
# Automaticly adds title to Youtube-dl when downloading videos with it.
|
2011-08-13 12:02:01 +02:00
|
|
|
alias youtube-dl="youtube-dl -t"
|
|
|
|
|
2011-08-14 17:11:55 +02:00
|
|
|
# git specific. This is the command which I use when git asks me to commit something and says that I have modified files, even when I haven't.
|
|
|
|
alias gdrop="git stash && git stash drop"
|