Modified the backup alias to include statistics

This commit is contained in:
2022-08-11 15:11:20 +02:00
parent 78d9817d0c
commit da7d858558

View File

@@ -62,7 +62,7 @@ alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.ar
alias ding="tput bel" alias ding="tput bel"
# Backs files up using rsync, not preserving linux perms (for external drives) # Backs files up using rsync, not preserving linux perms (for external drives)
alias backup="rsync -vrltD --progress" alias backup="rsync -vrltD --progress --stats"
# Intuitive map function # Intuitive map function
# For example, to list all directories that contain a certain file: # For example, to list all directories that contain a certain file:
# find . -name .gitattributes | map dirname # find . -name .gitattributes | map dirname