Skip to content

Instantly share code, notes, and snippets.

@bperel
Created October 24, 2015 13:46
Show Gist options
  • Save bperel/b6ff8001794f4be966be to your computer and use it in GitHub Desktop.
Save bperel/b6ff8001794f4be966be to your computer and use it in GitHub Desktop.
Find directories smaller than 1M
#!/bin/bash
dir=/home/Downloads
du --max-depth=1 ${dir} -t -1000000 | cut -f 2 | sed -e 's/\(.*\)/"\1"/' | tr '\n' ' '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment