Counting the number of readable, writable, and executable items in a directory


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Counting the number of readable, writable, and executable items in a directory
# 1  
Old 11-28-2010
Counting the number of readable, writable, and executable items in a directory

Hello, I'm writing a script in sh in which the first command line argument is a directory. from that, i'm suppose to count the number of readable, writable, and executable items in the directory. I know using $1 represents the directory, and ls would display all the items in the directory, and that ls | wc -l would count the number of items. I'm uncertain as to how to filter ls so that only the readable/writable/executable files are shown and counted, and since I don't know if i'm the user, group, or other I cant check the permissions.

could someone show me how to do this? Thanks
# 2  
Old 11-28-2010
Code:
USER=`whoami`
for GROUP in `groups`
do
  GROUPLIST=${GROUPLIST}\\\|${GROUP}
done
READ=0
WRITE=0
EXEC=0
for FILE in `ls`
do
  if ls -l $FILE | grep $USER
  then
    if ls -l $FILE | cut -c2 | grep r
    then
     READ=`expr $READ + 1`
    fi
  elif ls -l $FILE | egrep $GROUPLIST
  then
 
  else
  fi
done

You will have to fill in the gaps and add code for all conditions but you should get the idea. Someone else might know an easier way.

Last edited by ilikecows; 11-28-2010 at 09:25 PM.. Reason: Spelling error
# 3  
Old 11-28-2010
This sounds like homework. We have a homework forum.

Anyway, please post homework there. The answer I'm giving you will not be believed by your prof - i.e., she will think you got it off the internet, which is true.

Code:
ls -l $1 | awk ' $1 ~ /r/ {r++} $1 ~ /w/ {w++} $1 ~ /x/ {x++} 0 
                    END { printf( "read %d write %d execute %d \n", r,w,x) }'

# 4  
Old 11-28-2010
Which approach you take depends on whether or not the script counts what the user that ran the script can do, or a more general approach.

@jim mcnamara, whats the 0 for after the {x++}?
# 5  
Old 11-28-2010
Hint: Have a look at the -r -w and -x options of test.
This User Gave Thanks to Chubler_XL For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Number of Small Forum Code Changes (TODO List Items)

In the past few days have I have done a lot of code cleanup work in various categories, including faster page loading and bug fixes: Move countless inline style directives to external CSS stylesheets for key pages (faster page loading) Fixed bug in member panel going between desktop and... (6 Replies)
Discussion started by: Neo
6 Replies

2. Shell Programming and Scripting

Counting the number of files within a directory input by the user

So I have a loop that stated if a directory exists or not. If it does it prints the number of files within that directory. I use this code... result=`(ls -l . | egrep -c '^-')` However, no matter which directory I input, it outputs the number "2" What is wrong here? (4 Replies)
Discussion started by: itech4814
4 Replies

3. Shell Programming and Scripting

counting the number of characters in the filename of all files in a directory?

I am trying to display the output of ls and also print the number of characters in EVERY file name. This is what I have so far: #!/bin/sh for x in `ls`; do echo The number of characters in x | wc -m done Any help appreciated (1 Reply)
Discussion started by: LinuxNubBrah
1 Replies

4. Shell Programming and Scripting

awk, help me - counting items and listing them

This is my first ever post... please help! :o I have two columns....here is part of the file... 12, 46798 6692, 46799 5710, ... (3 Replies)
Discussion started by: pelhabuan
3 Replies

5. UNIX for Dummies Questions & Answers

Counting number of folders in a Directory

Help Needed ! Can we count number of folders of specific date in a directory, even if directory has folders of different dates. Please reply as soon as possible. (1 Reply)
Discussion started by: vishal_215
1 Replies

6. Programming

Finding the number of bits a executable was compiled

Hi, Can anyone tell me how to find out how many bits a c executable was compiled in? I am trying to do some investigation of running 32bit programs in 64bit systems. (1 Reply)
Discussion started by: Leion
1 Replies

7. Shell Programming and Scripting

Counting items in variables, How come this works, However

Hi All, To start with, I have been reading this site for years, Unfortunately I do not consider myself versed well enough with scripts to provide useful help to others. The Blind cannot lead the Blind! Many of you have provided me with brain food and solutions over the years without even... (4 Replies)
Discussion started by: Festus Hagen
4 Replies

8. UNIX for Dummies Questions & Answers

Number of items in a directory

This should be so simple.. I have folder with about 27 subfolders in it, each folder has a number of fonts in it.. how do I get the total number of fonts for all subfolders? (2 Replies)
Discussion started by: glev2005
2 Replies

9. UNIX for Dummies Questions & Answers

Counting number of files in a directory

Some simple questions from a simple man. If i wanted to count the number of files contained within a directory, say /tmp would ls -l /tmp ¦ wc -l suffice and will it be accurate? second one: How would i check the number of files with a certain string in the filename, in the same directory. ... (2 Replies)
Discussion started by: iamalex
2 Replies
Login or Register to Ask a Question