Analyst Integration Question:
Download Job Interview Questions and Answers PDF
How to find large files in UNIX e.g. more than 1GB?
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
find . - type f -size +1G -print
Download Integration Programmer Interview Questions And Answers
PDF
Previous Question | Next Question |
Can you please explain the difference between correlated and non-correlated subquery? | Explain shell script? |