Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a command to find all of the files which have been
accessed within the last 30 days.

Answers were Sorted based on User's Feedback



Write a command to find all of the files which have been accessed within the last 30 days...

Answer / pk

find / -type f -atime -30 > November.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 November.files.

Is This Answer Correct ?    39 Yes 2 No

Write a command to find all of the files which have been accessed within the last 30 days...

Answer / diksha kakkar

the command is - find . -mtime -30 -print

Here you are telling find to list the files that were
modified with in last 30 days. You can increase the span of
time that "find" will report back on or go to a more
restricted time period.

Is This Answer Correct ?    17 Yes 4 No

Write a command to find all of the files which have been accessed within the last 30 days...

Answer / sathyasen

ff -a -30 -u /dev/hd0

This displays the path name, i-node number, and owner's
user name (the -u flag) of each file on the /dev/hd0 device
that has been modified within the last 30 days ( -m -30).

Is This Answer Correct ?    3 Yes 2 No

Write a command to find all of the files which have been accessed within the last 30 days...

Answer / jyoti pruthi

find / -atime -30

Here,
/ is for root directory
-atime is for access time
-30 is for within 30 days

It will give the details of the file that have been accessed
within the last 30 days.

Is This Answer Correct ?    2 Yes 2 No

Write a command to find all of the files which have been accessed within the last 30 days...

Answer / guest

ls -lt |grep $date <=30

Is This Answer Correct ?    0 Yes 24 No

Post New Answer

More Unix Commands Interview Questions

What is the functions of zambie process?

3 Answers  


how to remotely move a file ??? that mean how to move a file one machine to another machine ???

10 Answers   Altair,


what is the advaantage of each user having its own copy of the shell?

2 Answers   Infosys,


hi i have directories within the directory. Now i want to copy the directory along with all directories included in it to one location by using copy command? what is the command

2 Answers   ACS, Span Systems,


1-how will you display a file whose name is starting with '- '? 2-how will you add a patten at end of every line in vi editor?

7 Answers  


What are awk commands?

0 Answers  


How to get the last ten lines of a file using awk utility?

1 Answers   Infosys,


How do you copy a directory with many files and folders into another directory?

2 Answers  


How to rename files and folders?

7 Answers   IBM, Oracle,


How will you know who are the users logged in to the system before 15 minutes?

4 Answers   Amazon,


What is command substitution?

0 Answers  


What do chgrp command do?

0 Answers  


Categories