Answers for "find large file linux"

1

find large files linux

sudo find /your/path -xdev -type f -size +1000M

or use the graphical analyser "filelight"
Posted by: Guest on October-27-2021
0

find large files in ubuntu

sudo du -a /your_dir/ | sort -n -r | head -n 20
Posted by: Guest on August-18-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language