4 Aliases I Always Put on .zshrc/.bashrc

0xkoji - Jun 20 '19 - - Dev Community

I'm using a couple of machines, Mac, Ubuntu, and Raspberry Pis and all of them have at least 3 aliases. In addition, basically, I use zsh since I love oh-my-zsh.

If you are not familiar with alias, this post will be useful.
https://wpshout.com/quick-guides/make-bash-alias/

My .zshrc/.bashrc have followings.

reload

Sometimes I change settings, but I don't want to type source blah blah blah.

alias reload="source ~/.zshrc"
Enter fullscreen mode Exit fullscreen mode

h

I use this heavily, especially to check ssh destination lol

alias h="history"
Enter fullscreen mode Exit fullscreen mode

cl

Love to keep my iTerm screen clean as much as possible

alias cl="clear"
Enter fullscreen mode Exit fullscreen mode

p

Sometimes I do typo like pyhton or pythoo, so this is to run my python scripts smoothly.

alias p="python"
Enter fullscreen mode Exit fullscreen mode

I also put aliases for my python virtual env since I'm lazy.
For Ubuntu and Raspberry Pis have open which Mac uses.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .