find directories owned by a given user


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers find directories owned by a given user
# 1  
Old 06-02-2011
find directories owned by a given user

Hi,

I want to know if the is a way I can list the directories owned by a given user. Say i am logged in as that user.

I found out the find command lists the files owned by a certain user/group
but i want to know only the directories and if possible the permissions associated with these directories.

Thanks
# 2  
Old 06-02-2011
in the find command add the "-type d"

find path -type d ....etc....

for permission

add -perm

do man find for more information or post the command which u have

---------- Post updated at 01:09 PM ---------- Previous update was at 01:06 PM ----------

Code:
find path -user user-name -type d -perm permission

# 3  
Old 06-02-2011
Try:

Code:
find  . -type d  -user cgi

# 4  
Old 06-02-2011
Thanks

---------- Post updated at 03:33 AM ---------- Previous update was at 03:30 AM ----------

Also, is it possible to list the directory permissions along with the directory paths?

Thanks
# 5  
Old 06-02-2011
try this...

Code:
for i in `find  . -type d  -user cgi`; do echo -n $i " : " ; ls -l $i | head -1 | awk '{print $1}'; done

---------- Post updated at 02:11 PM ---------- Previous update was at 02:08 PM ----------

not tested...
Code:
find . -type d -user cgi -exec ls -ld {} \;

# 6  
Old 06-02-2011
Code:
find . -type d  -user cgi -ls

# 7  
Old 06-02-2011
Thanks this works for me.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Loop over certain user directories and find files

Hello I have user directories that contain /temp directory. Example folders: /user1/temp/ /user2/temp/ /user3/temp/ How can i loop over all user directories and find all files only in their /temp folder? Thanks a lot for help! (3 Replies)
Discussion started by: flavius42
3 Replies

2. Shell Programming and Scripting

Delete everything owned by a particular user

I want to delete all files and folders owned a user say abcuser in the folder /tmp . Can you please give me the command ? Thanks Matt (2 Replies)
Discussion started by: lijjumathew
2 Replies

3. AIX

find command to list all the 777 files and directories owned by root user

Hi I'm logged in to an AIX box now and we need to do an audit on this box. cbssapr01:# pwd / Which command will show all the files and directories owned by root user with permissions as 777 ? (8 Replies)
Discussion started by: newtoaixos
8 Replies

4. UNIX for Dummies Questions & Answers

user able to delete directory owned by root

I've tried to figure this out. I'm only about 6 mos into my AIX admin duties, but I've got a "security" problem I can't figure out. I've created a sub directory as follows: drwx------ 2 root system 256 Apr 13 16:02 mike I've logged in another session with the following user: $ id... (2 Replies)
Discussion started by: mpheine
2 Replies

5. Shell Programming and Scripting

Find the total size of all directories that are owned by a particular User

Hi All, I am writing a script in which i need find the total size of all the directories that are present in a directory which are owned by a particular user. I will explain in details i have a dir DIR1 in which i have 5 dir's DIRA DIRB DIRC DIRD DIRE. DIRA DIRC DIRE are owned by "eswar" i... (2 Replies)
Discussion started by: firestar
2 Replies

6. UNIX for Advanced & Expert Users

kill process owned by another user

How can I kill a process owned by user1? I will be using another user (user2) (not root) and we are on the same primary and secondary group. I copied everything including it's .profile and set the path accordingly. user1@hostnmae0:/home/user1 $ pkill java pkill: Failed to signal pid 1234:... (2 Replies)
Discussion started by: lhareigh890
2 Replies

7. Solaris

fbconsole process owned by user

I did a ps-ef on a host and discovered many /usr/openwin/bin/fbconsole processes running. They were owned by several users and its parent PID in etc/init. I bellieve that this process should be owned by root and not the user, and also the parent PID should be the dtlogin. Any ideas of how this... (0 Replies)
Discussion started by: amp4cats
0 Replies

8. Shell Programming and Scripting

Kill Process not owned by other user

Hi Here is my problem: 1)I am login to unix server through my login id and do SU - xxx 2) Start the script which is running in background I want that other user which login to there id and do SU - yyy(Different user) kill that script. Could you please help me in this. (9 Replies)
Discussion started by: mr_harish80
9 Replies

9. UNIX for Dummies Questions & Answers

How to find out in which directories a user can write?

Hi everybody, what command can show me the directories in which a certain user can write to? Kind Regards FranzB (2 Replies)
Discussion started by: FranzB
2 Replies

10. UNIX for Dummies Questions & Answers

How to delete everything owned bya particular user?

Hi I am an Oracle DBA and I want to delete everything owned byOracle on the AIX server. What command would do that? (5 Replies)
Discussion started by: sarangishere
5 Replies
Login or Register to Ask a Question