How to display only Owner and directory/sub directory names under particular root


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to display only Owner and directory/sub directory names under particular root
# 1  
Old 09-02-2010
MySQL How to display only Owner and directory/sub directory names under particular root

hai,
I am new to Unix, I have a requirement to display owner name , directory or sub directory name, who's owner name is not equal to "oasitqtc".
(here "oasitqtc" is the owner of the directory or sub directory.)

i have a command (below) which will display all folders and sub folders, but i don't want to display all the information of directory like permission, group...etc.

just i want to display only owner name, directory or sub directory name (who's owner is not equal to "oasitqtc")

Code:
find . -type d -exec ls -ld {} \; > ~/folder_owners.txt

Out put of the above command :

Code:
drwxr-xr-x  2 oasitqtc dba 4096 Dec 28  2004 ./xtr/11.5.0/patch/115/xml/US
drwxr-xr-x  3 oasitbvp dba 4096 Oct  3  2002 ./xtr/11.5.0/reports
drwxr-xr-x  2 oasitbvp dba 4096 Dec 28  2004 ./xtr/11.5.0/reports/US
drwxr-xr-x  2 oasitqtc dba 4096 Oct  3  2002 ./xtr/11.5.0/sql
drwxrwxrwx  3 oasitqtc dba 4096 Nov  4  2004 ./xxau
drwxrwxrwx  19 oasitbvp dba 4096 Aug 17 23:46 ./xxau/11.5.0
drwxrwxrwx  4 abcdxx dba 4096 Aug  4  2005 ./xxau/11.5.0/admin
drwxrwxrwx  3 oacdxx dba 4096 Aug  4  2005 ./xxau/11.5.0/admin/import
drwxrwxrwx  2 oasitqtc dba 4096 Aug  4  2005 ./xxau/11.5.0/admin/import/US

from the above output file, i need to display below data only.
ex
Code:
: oasitbvp  ./xtr/11.5.0/reports
      oasitbvp  ./xtr/11.5.0/reports/US
     oasitbvp   ./xxau/11.5.0
     abcdxx     ./xxau/11.5.0/admin
     oacdxx    ./xxau/11.5.0/admin/import

really appreciate any help.
Thank you.

Last edited by pludi; 09-02-2010 at 03:56 AM.. Reason: code tags, please.
# 2  
Old 09-02-2010
Bug

Try using the below code :


Code:
find . -type d -exec ls -ld {} \; | awk '{print $3,$9}' | grep -v oasitqtc

It should give you desired output

However better code will be with egrep as states below :

Code:
find . -type d -exec ls -ld {} \; | awk '{print $3,$9}' | egrep  -v "^oasitqtc"

Try both Smilie

Last edited by Paarth; 09-02-2010 at 04:26 AM..
This User Gave Thanks to Paarth For This Post:
# 3  
Old 09-02-2010
Quote:
Originally Posted by Paarth
Try using the below code :


Code:
find . -type d -exec ls -ld {} \; | awk '{print $3,$9}' | grep -v oasitqtc

It should give you desired output

However better code will be with egrep as states below :

Code:
find . -type d -exec ls -ld {} \; | awk '{print $3,$9}' | egrep  -v "^oasitqtc"

Try both Smilie
Unnecessary to use grep with awk:
Code:
find . -type d -exec ls -ld {} \; | awk '$3 != "oasitqtc"{print $3, $NF} '

This User Gave Thanks to Franklin52 For This Post:
# 4  
Old 09-02-2010
Thank you very much "Franklin52" your given command is working fine.

Hi Paarth,
"find . -type d -exec ls -ld {} \; | awk '{print $3,$9}' | grep -v oasitqtc" command is not working,
but if i replaced $9 with $NF then the command is working fine.
Thank you very much for your quick response.
# 5  
Old 09-02-2010
It easy:
Code:
find . -type d ! -user oasitqtc

or if you wants find directores and subdirectores whole system
Code:
find / -type d ! -user oasitqtc

or if you wants find directores and subdirectores whole filesystem "/"
Code:
find / -type d ! -user oasitqtc -xdev

# 6  
Old 09-02-2010
Better to use "find" to eliminate what you don't want.
With care you can deal with directory names containing space characters and produce the output in alphabetical order of directory name.


Code:
find . ! -user oasitqtc -type d -print | sort | while read DIR
do
        OWNER=`ls -ld "${DIR}" |awk '{print $3}'`
        echo "${OWNER} ${DIR}"
done

# 7  
Old 09-02-2010
When there is little depth of directories. It is easier to do:
Code:
ls -ldR|awk '$3 !== "oasitqtc" {print $3,$NF}'

now no problem if a directory name include word "oasitqtc"
Methyl, I think it's very good:
Code:
find . ! -user oasitqtc -type d -print | sort | while read DIR
do
        OWNER=`ls -ld "${DIR}" |awk '{print $3}'`
        echo "${OWNER} ${DIR}"
done

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

SunOS confusing root directory and user home directory

Hello, I've just started using a Solaris machine with SunOS 5.10. After the machine is turned on, I open a Console window and at the prompt, if I execute a pwd command, it tells me I'm at my home directory (someone configured "myuser" as default user after init). ... (2 Replies)
Discussion started by: egyassun
2 Replies

2. UNIX for Beginners Questions & Answers

UNIX command to display Owner,Group,Root and Subdirectories list

Hi Team, Am a newbie to Unix. As I would like to see the Server Name,Owner Name ( not numeric form), Group Name ( not numeric ID), ROOT path. I would like to send this list as an attachment to my personal mail. Can any one please help me out to to resolve this . Here is the sample result... (6 Replies)
Discussion started by: vasuvv
6 Replies

3. AIX

How to set owner and permission for files/directory in directory in this case?

Hi. My example: I have a filesystem /log. Everyday, log files are copied to /log. I'd like to set owner and permission for files and directories in /log like that chown -R log_adm /log/* chmod -R 544 /log/*It's OK, but just at that time. When a new log file or new directory is created in /log,... (8 Replies)
Discussion started by: bobochacha29
8 Replies

4. UNIX for Dummies Questions & Answers

Removing directory with leading hyphen from root directory

I know that this basic question has been asked many times and solutions all over the internet, but none of the are working for me. I have a directory in the root directory, named "-p". # ls -l / total 198 <snip> drwxr-xr-x 4 root root 4096 Dec 3 14:18 opt drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: edstevens
2 Replies

5. UNIX for Dummies Questions & Answers

rsync in osx - nondestructive with differnt names of root directory

normally I rsync -haPE source destination What I want to do is take a old ~ directory from an external drive and have it ONLY update missing files NOT replace existing files. excluding ~/library any help would be great. (3 Replies)
Discussion started by: briandanielz
3 Replies

6. Shell Programming and Scripting

Grepping file names, comparing them to a directory of files, and moving them into a new directory

got it figured out :) (1 Reply)
Discussion started by: sHockz
1 Replies

7. AIX

Unix root directory owner wrong AIX 5.3

The a chown was done and instead of using ./ a / was used and root ownership files got changed. I need to change the ownership of the files/directory back - backups are not working and I am concerned a reboot will not be successful. Can anyone provide the ownership of these files/directories... (6 Replies)
Discussion started by: spike1
6 Replies

8. UNIX for Dummies Questions & Answers

Loop through directory and extract sub directory names

I am trying to loop through folders and extract the name of the lowest level subfolder I was running the script below, it returns /bb/bin/prd/newyork /bb/bin/prd/london /bb/bin/prd/tokyo I really want newyork london tokyo I couldn't find a standard variable for the lowest level... (1 Reply)
Discussion started by: personalt
1 Replies

9. UNIX for Dummies Questions & Answers

Display all directory/sub directory with occupied space?

Hello, I am using Red Hat linux system. I see my /work directory has used space 300GB. But there are so many sub directory under /work. I want to list each direcotry and under all subdirectory. But i want to know how much space occupied by each directory. What kind of command i can use to... (3 Replies)
Discussion started by: govindts
3 Replies

10. Shell Programming and Scripting

determine owner directory permissions from within the directory

From within a directory, how do I determine whether I have write permission for it. test -w pwd ; echo ? This doesn't work as it returns false, even though I have write permission. (4 Replies)
Discussion started by: Sniper Pixie
4 Replies
Login or Register to Ask a Question