InterviewSolution
Saved Bookmarks
| 1. |
What is the command to find space consumed by each directory ? |
|
Answer» This can be CHECKED by USING du command ( DISK usage) du –sh . | GREP G - lists all the directory which has GIGS in SIZE. $ du –sh . | grep G5 ./Default/AppData/Local/Microsoft/Windows/WinX/Group1 25 ./Default/AppData/Local/Microsoft/Windows/WinX/Group2 60 ./Default/AppData/Local/Microsoft/Windows/WinX/Group3 |
|