add newline to the end of dus

This commit is contained in:
xfnw 2022-07-01 11:42:10 -04:00
parent f6b884259b
commit 679bd4562b

View file

@ -8,3 +8,4 @@ du -s * | sort -nrk 1 | awk '{
else if ($1 > 1024) printf("%7.2f %s\t%s\n", $1/1024, "Mb", $2)
else printf("%7.2f %s\t%s\n", $1, "Kb", $2)
}'