Analyst Integration Question: Download Integration Programmer PDF

How to find large files in UNIX e.g. more than 1GB?

Tweet Share WhatsApp

Answer:

You can easily find big files by using find command because it provides option to search files based upon there size. Use this if your file system is full and your Java process is crashing with no more space. This command will list all files which is more than 1GB. You can tweak the size easily e.g. to find all files with more than 100 MB just use +100M.

find . - type f -size +1G -print

Download Integration Programmer PDF Read All 41 Integration Programmer Questions
Previous QuestionNext Question
Can you please explain the difference between correlated and non-correlated subquery?Explain shell script?