Got stuck so plz help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Got stuck so plz help
# 1  
Old 04-10-2007
Question Got stuck so plz help

I'm having problem writing a shell script using bash that takes a file as an argument. The script should be able to determine what permissions the owner, group and everybody has for the file passed in.

could anyone plz help me out.
# 2  
Old 04-10-2007
ls -l "$1" | awk '{print $1}' | sed 's/^.//'

or if you need it with description:

script.ksh
Code:
ls -l $1  | awk '{print $1}' | sed 's/^.//' | sed 's/\(^...\)/owner:\1 group:/;s/\(...$\)/ others:\1/'

#script.ksh /tmp/test
owner:rw- group:r-- others:r--

dirty but it's working Smilie

Last edited by funksen; 04-10-2007 at 08:32 PM..
# 3  
Old 04-10-2007
Code:
#!/bin/sh

if [ $# -ne 1 ]; then
        echo "Usage: $0 yourfilename"
 exit 127
fi

ls -al $1 | cut -d" " -f1

# 4  
Old 04-11-2007
Quote:
Originally Posted by boris
I'm having problem writing a shell script using bash that takes a file as an argument. The script should be able to determine what permissions the owner, group and everybody has for the file passed in.

Code:
set -- `ls -l "$1"`
perms=${1#?}
uperm=${perms%??????}
temp=${perms#???}
gperm=${temp%???}
operm=${temp#???}

That will work in any POSIX shell (including bash). It can be written more succinctly in bash (this also works in ksh93):

Code:
set -- `ls -l "$1"`
uperm=${1:1:3}
gperm=${1:4:3}
operm=${1:7:3}

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Stuck with awk !!!

Can someone help me with geting the desired output? Source: Bank1.sss 63 Result code 2 Result code 4 Result code Bank2.sss 474 Result code 1 Result code 4 Result code 2 Result code 1 Result code Output:... (12 Replies)
Discussion started by: zsycho
12 Replies

2. Shell Programming and Scripting

Job Stuck

I've written a shell script to create id in oracle database. However in some db the script just hanging. How can I say to the script "If you are hanging for more than 3 min" then kindly come out and continue in next id creation. Regards. GV (1 Reply)
Discussion started by: ilugopal
1 Replies

3. Debian

Stuck in BIOS

okay,i made a grave mistake in installing the base bare bones install of debian. here i have edited this from the original. this morning when i got home from work i did some searching and then just shut the system down via the mechanical off on switch. waited a few minutes and then restarted... (0 Replies)
Discussion started by: cowLips
0 Replies

4. Linux

Stuck in pthread_cond_signal()

I am developing a multi-threaded library that helps the transformation of messages between threads in different processes using shared memory. I am using the pthreads condition facility in order to synchronize access to the shared memory slots through which the messages are passed. My test... (2 Replies)
Discussion started by: dhzdh
2 Replies

5. Shell Programming and Scripting

help! im stuck..

I want to search for the line with the group name and add the user into the group. The file format is the same as /etc/group The code i wrote is egrep "^$newGID" $group >/dev/null FS=":" oldData=awk -F: '{print $3}' newData= "$oldData,$newUser" sed -n $4/$newData $group but a friend... (1 Reply)
Discussion started by: cherrywinter
1 Replies

6. UNIX for Dummies Questions & Answers

stuck with a script

Hi There I am pretty new to UNIX and have only been using it from a basic point of view,I now want to start using it and learning more , have got a whole lot of books and documentation from the web and am slowly learning.I have written a get script in windows :- lcd E:\MAIN\PRO\FILES\MAINDB... (1 Reply)
Discussion started by: FOCKER
1 Replies

7. Programming

I'm stuck :(

Suppose that I have some data: 12,30 12,45 2,3 7,8 3,9 30, 8 45,54 56,65 Where (a,b) indicates that a is connected to b. I want to get all connected nodes to one point. For instance, the output of the above example should be something like: Group 1 2,3 3,9 Group 2 12,30 12,45... (4 Replies)
Discussion started by: Legend986
4 Replies

8. UNIX for Dummies Questions & Answers

stuck and confused

#!/bin/bash echo $1 | cat - $2 >> /tmp/$$ && mv /tmp/$$ $2 im trying to get the first argument to go in the middle of the second argument which is a file, anyone any ideas. i have only managed to get it to go on the end or the front. been fiddling about with wc -l, i get the number of lines... (5 Replies)
Discussion started by: iago
5 Replies

9. UNIX for Advanced & Expert Users

stuck....!

I have been busy reading away on devices and filesystems and I am stuck on a particular subject matter.. I'm not understanding the concept behind mknod mkfifo makedev or related commands.. can anyone shed some light on the subject.! any feedback welcome! moxxx68 (0 Replies)
Discussion started by: moxxx68
0 Replies

10. UNIX for Dummies Questions & Answers

plz Help How should I configure cc compiler output file plz help???

i.e configuration of C compiler :confused: (4 Replies)
Discussion started by: atiato
4 Replies
Login or Register to Ask a Question