The below command is set to search the home directory of the server for files that are larger than 200M into a new text file large_files.
find /home/ -xdev -type f -size +200M -exec ls -la {} \; | sort -n > large_files
The below command is set to search the home directory of the server for files that are larger than 200M into a new text file large_files.
find /home/ -xdev -type f -size +200M -exec ls -la {} \; | sort -n > large_files