have you ever got warning message from unix admin that file
system running out of space or not enough disk space?what
will u do?
Answer Posted / bc
If you want to delete large files that resides on your home
directory you can sort out things using find command.
find . -size +10M ---> lists files having size greater than
10MB.
find . -size -10M --> lists files having size less than 10MB.
Similarly you can use "k" instead of "M" for kb's.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain about sh?
Is python faster than bash?
What does umask 022 mean?
How to know linux os is 32 bit or 64 bit?
What is the difference between diff and cmp command in unix?
Explain about document formatting?
What is c++ makefile?
What is the command to see on which port which service is running? And what is the difference between /etc/services file and net stat command?
Why ms dos is used?
How use linux command line?
How do I use nslookup in linux?
Write about an internal command.
Write a command that will do the following: -look for all files in the current and subsequent directories with an extension c,v -strip the,v from the result (you can use sed command) -use the result and use a grep command to search for all occurrences of the word orange in the files.
You read an article that lists the following command: dd if=/dev/fdo bs=512 of=/new what does this accomplish?
What is ulimit command?