Analyst Integration Question:
Download Questions PDF

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

Integration Programmer Interview Question
Integration Programmer Interview Question

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 Interview Questions And Answers PDF

Previous QuestionNext Question
How SNMP Agent is associated with Data Integrator?Explain about Data Integrator Metadata Reports?