Skip to content

Instantly share code, notes, and snippets.

View nityanandmathur's full-sized avatar
🎯
Focusing

Nityanand Mathur nityanandmathur

🎯
Focusing
View GitHub Profile
@nityanandmathur
nityanandmathur / bashrc.md
Last active June 3, 2024 05:53
Custom aliases for .bashrc file for smooth operation

List files aliases

alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
list() {
    total=0
    printf "%-50s %s\n" "Directory" "Count"
    for d in ./*; do
 if [ -d "$d" ]; then