What is the command to see all the processes are working in
the last 30 days?
Answer Posted / sravana
find / -type f -atime -30 > December.files
This command will find all the files under root, which is
‘/’, with file type is file. ‘-atime -30′ will give all the
files accessed less than 30 days ago. And the output will
put into a file call December.files.
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
What does bash stand for?
Which command is used to review boot messages?
How use linux command line?
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.
How do I clear bash history in linux?
What does wc command do in unix?
Which command will show you free/used memory?
What commands are used to see all jobs running in the hadoop cluster and kill a job in linux?
What will happen when a system call is encountered in a user program?
What is p in mkdir?
How do I check storage on linux?
How to write the output of a command to a file?
What is umask 000?
What is bash history linux?
What could be the problem when a command that was issued gave a different result from the last time it was used?