How to find 777 permisson is there or not for Directories and sub-directories


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to find 777 permisson is there or not for Directories and sub-directories
# 8  
Old 06-25-2010
If you want only directories and subdirectories to be found use:
Code:
find /appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' -type d ! -perm 777

# 9  
Old 06-25-2010
Quote:
Originally Posted by bartus11
If you want only directories and subdirectories to be found use:
Code:
find /appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' -type d ! -perm 777


Hi Bartus11,
Thank you for your quick response,

I need to execute the Unix command under APPL_TOP only.
when i executed below commands
Code:
(find /appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' ! -perm 777)  # and
(find /appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' -type d ! -perm 777)

at different level am getting error please find below

Code:
qtcdev:/apps/qtcdev/appl_top> ! -name "xxk*" | xargs -i find '{}' ! -perm 777<
find: /appl_top: No such file or directory
qtcdev:/apps/qtcdev/appl_top>cd ..
qtcdev:/apps/qtcdev>" | xargs -i find '{}' ! -perm 777                       <
find: /appl_top: No such file or directory
qtcdev:/apps/qtcdev>


Last edited by Scott; 06-25-2010 at 05:54 AM.. Reason: Code tags
# 10  
Old 06-25-2010
I assume "/apps/qtcdev/appl_top" is your APPL_TOP? Then use:
Code:
find /apps/qtcdev/appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' -type d ! -perm 777

Path to search always comes first in "find"
This User Gave Thanks to bartus11 For This Post:
# 11  
Old 06-25-2010
Quote:
Originally Posted by bartus11
I assume "/apps/qtcdev/appl_top" is your APPL_TOP? Then use:
Code:
find /apps/qtcdev/appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' -type d ! -perm 777

Path to search always comes first in "find"

Thanks a lot bartus, the above command is fulfilling my requirement but when i execute i got below output

Code:
qtcdv:/apps/qtcdv/appl_top>find /apps/qtcdv/appl_top -type d -name "xx*" -a ! -name "xxk*" | xargs -i find '{}' -type d ! -perm 777
find: /apps/qtcdv/appl_top/izu/11.5.0/bin/out: Permission denied
find: /apps/qtcdv/appl_top/izu/11.5.0/bin/rda/output: Permission denied
/apps/qtcdv/appl_top/xxcca/11.5.0/test
/apps/qtcdv/appl_top/xxcca/11.5.0/test/sample
qtcdv:/apps/qtcdv/appl_top>

As per the command it has to search only Directories which are starting with "xx..." but i got result above, here the "izu" directory should not come rite cause its not starting with "xx..."
Really I am very thankful for your support.

Moderator's Comments:
Mod Comment Please use code tags. Thank you

Last edited by Scott; 06-25-2010 at 05:55 AM.. Reason: Code tags
# 12  
Old 06-25-2010
I think it is just error from stat on directory that has restricted access. Try that to avoid that:
Code:
find /apps/qtcdev/appl_top -maxdepth 1 -type d -name "xx*" -a ! -name "xxk*" 2>/dev/null | xargs -i find '{}' -type d ! -perm 777


Last edited by bartus11; 06-25-2010 at 04:52 AM.. Reason: One more tweak
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Giving read write permission to user for specific directories and sub directories.

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. This is for Solaris. Please help. (1 Reply)
Discussion started by: blinkingdan
1 Replies

2. UNIX for Dummies Questions & Answers

List the directories, having given pattern in the directories name, sorted by creation date

It is for HP-Unix B.11.31. Requirement: 1. List the directories, having given pattern in the directories name, sorted by creation date. Example: Directories with name "pkg32*" or "pkg33*" 2. On the output of 1. list the directories by creation date as sort order, with creation date... (2 Replies)
Discussion started by: Siva SQL
2 Replies

3. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

4. 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

5. UNIX for Dummies Questions & Answers

Using grep command to find the pattern of text in all directories and sub-directories.

Hi all, Using grep command, i want to find the pattern of text in all directories and sub-directories. e.g: if i want to search for a pattern named "parmeter", i used the command grep -i "param" ../* is this correct? (1 Reply)
Discussion started by: vinothrajan55
1 Replies

6. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

7. Shell Programming and Scripting

Script for parsing directories one level and finding directories older than n days

Hello all, Here's the deal...I have one directory with many subdirs and files. What I want to find out is who is keeping old files and directories...say files and dirs that they didn't use since a number of n days, only one level under the initial dir. Output to a file. A script for... (5 Replies)
Discussion started by: ejianu
5 Replies

8. Shell Programming and Scripting

check if multiple directories exist else create missing directories

Hi , I 'm trying to check if multiple directories exist on a server, if not create the missing ones and print " creating missing directory. how to write this in a simple script, I have made my code complex if ; then taskStatus="Schema extract directory exists, checking if SQL,Count and... (7 Replies)
Discussion started by: ramky79
7 Replies

9. UNIX for Dummies Questions & Answers

chmod 777 on all directories below...how do I do that using the "find" command?

I've got 100 directories that each have 2 directories with in them. Structered like this: /home/domains/domain1/ through to /home/domains/domain100/ and those 2 directories mentioned above are here: /home/domains/domain1/directory1/ /home/domains/domain1/directory2/ through to... (7 Replies)
Discussion started by: Neko
7 Replies
Login or Register to Ask a Question