Return to Snippet

Revision: 27656
at June 19, 2010 02:18 by kossmoss


Updated Code
du -h |grep -E '^.{1,3}[MG].*\.\/'
du -h |grep -E '^[^,]{2}[M].*\.\/'

Revision: 27655
at June 19, 2010 02:09 by kossmoss


Initial Code
du -h |grep -E '.{1,4}[MG].*\.\/'
du -h |grep -E '[^,]{2}[M].*\.\/'

Initial URL


Initial Description
1st shows only files and directories bigger than 1 Megabyte
2nd shows only files and directories bigger than 100 Megabyte

Initial Title
Show only big files and directories at current directory and subdirs

Initial Tags
linux, files

Initial Language
Bash