DEV Community

Discussion on: What are your favorite bash aliases?

Collapse
 
mediumrowdy profile image
medium-rowdy

Not too many, as I move around between systems quite a lot. The couple I can't do without are:

alias ll="ls -l"
alias la="ls -la"

And to help with finding large directories/files:

alias du1="du -k -d 1 | sort -n"
alias ll5="ls -la | sort -k 5 -n"
Collapse
 
roelofjanelsinga profile image
Roelof Jan Elsinga

100% adding those to my list!!