Skip to content

Instantly share code, notes, and snippets.

@qoopooh
Created August 31, 2022 02:28
Show Gist options
  • Save qoopooh/9f0efd05d62e8bcaffa144b8991f2463 to your computer and use it in GitHub Desktop.
Save qoopooh/9f0efd05d62e8bcaffa144b8991f2463 to your computer and use it in GitHub Desktop.
Check disk usage in current folder
#!/bin/bash
du -hs * | sort -h > /tmp/du-size
cat /tmp/du-size
cp /tmp/du-size du-size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment