]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/aliases.in
shell/aliases: Display complete size in du alias.
[config/dotfiles.git] / shell / aliases.in
index 94b001dfa56ff99ecc6f5fa5de7ffd1d91f29d09..fa7616294b6da940007a2e5fca780825bf48a1d8 100644 (file)
@@ -73,8 +73,9 @@ alias :q='echo "This is not Vim!" >&2'
 # Automatically use unified diffs.
 alias diff='diff -u'
 
-# Display all files and use human readable sizes.
-alias du='du -sh'
+# Display all files (-s), use human readable sizes (-h) and display the
+# complete size (-c).
+alias du='du -shc'
 # Use human readable sizes.
 alias df='df -h'