Quantcast
Channel: INDIA WEB HOSTING FAQs
Viewing all articles
Browse latest Browse all 15

Find files greater than MB GB size in linux ssh

$
0
0

Find files greater than MB GB size in linux ssh.

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


Viewing all articles
Browse latest Browse all 15

Trending Articles