Find files greater than MB GB size in linux ssh. ( Such a helpful ssh command to find big, larger or largest file on server)
The following ssh command will list all the files in the system greater than 200MB.
# find / -type f -size +200M
The following ssh command will list all the files greater than 2GB.
# find / -type f -size +2G
The following ssh command will list all the files greater than 10MB from home folder only.
# find /home -type f -size +10M
Related: Linux SSH, Virtual Server