Status von drak (drak) auf Friday, 23-Jun-17 13:26:03 UTC
-
A=$(mount | cut -d " " -f 3); for i in *; do for mountee in $A; do if [ "$(realpath "${i}")" == "${mountee}" ]; then continue 2; fi; done; du -hs "$i"; done | sort -h # the long and slow form of du -xhd 1 . | sort -h ☺
Friday, 23-Jun-17 13:26:03 UTC von web