01Aug 7, 2026/4 minI Built Commando Because My Shell Needed More Than HistoryI usually remember what I want the terminal to do. I forget the exact command that does it. Was it , or did the namespace flag come before…cmdlinetoolsproductivity
02Jul 11, 2023/1 minFind disk usage sorted by sizeTo find all folders and it's disk usage sorted by size, you can use the following cmd Copy du -ck | sort -n To find all files in a folder and it's size, Copy ls -l --block-size=MB or Copy ls -lhcmdline
03Jul 6, 2023/1 minFind process using a portyou can execute the following cmd to find the process which occupies a specific port in linux. Copy sudo lsof -i :<port_number> -t | xargs ps -o pid,user,cmd -pbashcmdline
04Feb 5, 2021/1 minLocal aliases using zen aliasesWe can configure aliases very easily in bash or zsh. but those aliases are global to all directory. sometimes we need aliases or commands…cmdlinezshbash
05Nov 8, 2020/1 minGit autocompletionRemembering the branches and all the available commands are daunting work in git. what if the commands auto-completes itself like shown in…gitcmdline