Skip to content

Instantly share code, notes, and snippets.

@salarmehr
salarmehr / .bashrc
Created July 24, 2021 18:42
.bashrc
# Directories
alias ll='ls -FGlAhp'
alias lz='ls --human-readable --size -1 -S --classify' #Sort by file size
alias left='ls -t -1' #Sort by modification time
alias ..="cd ../"
alias ...="cd ../../"
alias ....="cd ../../../"
alias .....="cd ../../../../"