|
Search Forums:
|
|||||||
| Forums | Register | Forum Rules | Linux and Unix Links | Man Pages | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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
|
|||
|
|||
|
|
| Sponsored Links | ||
|
|
|
#3
|
|||
|
|||
|
Quote:
---------- 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
|
|||
|
|||
|
To find files with only 444 permissions, use the perm options like this: Code:
find . -perm -444 ! -perm /222 ! -perm /111 |
| Sponsored Links | |
|
|
#5
|
|||
|
|||
|
You have more related examples here: Mommy, I found it! — 15 Practical Linux Find Command Examples
|
| Sponsored Links | ||
|
|
![]() |
| Tags |
| find, permission |
| Thread Tools | Search this Thread |
| 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 |
|
|