From: Michael Orlitzky Date: Thu, 25 Jun 2020 00:42:25 +0000 (-0400) Subject: aliases: add "--total" to the "du" alias. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=bash.d.git;a=commitdiff_plain;h=3fc60cd6081646b25f699f153a4df47b9c1853ed aliases: add "--total" to the "du" alias. --- diff --git a/aliases.sh b/aliases.sh index 084b2f2..577a25d 100644 --- a/aliases.sh +++ b/aliases.sh @@ -2,7 +2,7 @@ # aliases # alias df='df --human-readable' -alias du='du --human-readable --summarize *' +alias du='du --human-readable --summarize --total *' alias ls='ls -l --color=auto --human-readable --time-style=long-iso' alias youtube-dl-mp3='youtube-dl --extract-audio --audio-format=mp3'