Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Search Forums:



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

Closed Thread    
 
Thread Tools Search this Thread Display Modes
    #1  
Old 03-13-2010
Registered User
 

Join Date: Mar 2010
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
find files

hello,

I have a problem..
i want to find all the files that have been modified during the day (my files, not those of other users).. can you help me?


thank you..!
Sponsored Links
    #2  
Old 03-13-2010
Moderator
 

Join Date: Feb 2007
Location: The Netherlands
Posts: 7,292
Thanks: 55
Thanked 429 Times in 410 Posts
Try the find command:

Man Page for find (All Section 1) - The UNIX and Linux Forums

Regards
Sponsored Links
    #3  
Old 03-13-2010
Registered User
 

Join Date: Mar 2010
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Franklin52 View Post
thank you! i found it

---------- Post updated at 01:42 PM ---------- Previous update was at 01:35 PM ----------

one more question..

i want to find all the files that can only be readed from the others users

1. how can i find the number the number that permits only Read (is 444?)

2. the command will be like that"

find / -perm 444 -type f -print | more

??/

thanks again![COLOR="#738fbf"]
    #4  
Old 03-13-2010
Moderator
 

Join Date: Feb 2007
Location: The Netherlands
Posts: 7,292
Thanks: 55
Thanked 429 Times in 410 Posts
To find files with only 444 permissions, use the perm options like this:

Code:
find . -perm -444 ! -perm /222 ! -perm /111

Sponsored Links
    #5  
Old 03-14-2010
thegeek thegeek is offline Forum Advisor  
Registered User
 

Join Date: Apr 2009
Location: /usr/bin/vim
Posts: 1,090
Thanks: 13
Thanked 37 Times in 35 Posts
You have more related examples here: Mommy, I found it! — 15 Practical Linux Find Command Examples
Sponsored Links
Closed Thread

Tags
find, permission

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
I need a script to find socials in files and output a list of those files NewSolarisAdmin Shell Programming and Scripting 1 02-19-2009 12:01 PM
Can I know find syntax to find given date files bache_gowda Shell Programming and Scripting 3 03-26-2008 05:37 AM
Find duplicates from multuple files with 2 diff types of files ricky007 Shell Programming and Scripting 2 03-04-2008 12:46 PM
Little bit weired : Find files in UNIX w/o using find or where command jatin.jain Shell Programming and Scripting 10 09-19-2007 06:47 AM
Find files older than 20 days & not use find halo98 Shell Programming and Scripting 2 05-18-2006 02:19 PM



All times are GMT -4. The time now is 03:24 AM.