help with shell scripting argument


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers help with shell scripting argument
# 1  
Old 11-16-2010
help with shell scripting argument

Code:
#!/bin/bash

echo "enter a file or directory name"
read name
if [ -f $name ]
        then
        echo " argument is file "
        ls -l $name | awk '{print $1,}'
        elif [ ???  $name ]
        echo " argument is a directory"
        ls -l $name | awk '{print $1}'
fi

what i am trying to do. get input file or directory name from user.
if it is a regular file, print permission or if it is a directory, print permissions.
i know " -f " means regular file but how to ask for directory. in other words i don't know
Code:
elif [ ???? $name]

any help will be appreciated.

Last edited by Scott; 11-16-2010 at 05:58 PM.. Reason: Please use code tags
# 2  
Old 11-16-2010
-d

---
This User Gave Thanks to Scrutinizer For This Post:
# 3  
Old 11-16-2010
Debian thanks

thank you.
Smilie
# 4  
Old 11-16-2010
see man test or man ksh for [...]. There is -d for direcotry, -l for link, -L for something else to do with links? A valid path can also be a named pipe, a raw or cooked device, etc. You can also do
Code:
 
ls -ld $name | read ls
case "$ls" in
(d*)
   echo " argument is a directory" >&2
   ls -l $name
   ;;
(-*)
   echo " argument is file " >&2
   echo "$ls"
   ;;
(*)
   echo "Not a file or directory: $ls" >&2
   ;;
esac | awk '{print $1}'

This User Gave Thanks to DGPickett For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Expect Scripting Loop Argument Desperately Needed!

I am trying to create an Expect script that does the following: 1) Telnets to an IP address and logs in with user ID and Password 2) Issue a CLI command to the server that will output data of which I am particularly interested in a DS1 clock 'Slips' value. I want to be able to keep issuing... (0 Replies)
Discussion started by: dwightlaidler
0 Replies

2. Shell Programming and Scripting

passing either of argument, not both in shell

Hi, I have a requirement to work on script, it should take either of arguments. wrote it as below. #!/bin/bash usage() { echo "$0: missing argument OR invalid option ! Usage : $0 -m|-r|-d } while getopts mrdvh opt; do case "$opt" in m) monitor_flag=monitor;;... (1 Reply)
Discussion started by: ramanaraoeee
1 Replies

3. Shell Programming and Scripting

how to specify number of argument in shell

Hi I am new in shell, I am trying to create a small script that can do exit if a script is executed when argument not 2 #!/bin/sh if ; then echo greater exit 1; elif ; then echo less exit 1; fiit keeps returning me whatever number of argument I... (1 Reply)
Discussion started by: peuceul
1 Replies

4. Shell Programming and Scripting

Call Shell scripting from Perl Scripting.

Hi How to call a shell scripting through a Perl scripting? Actually I need some value from Shell scripting and passes in the Perl scripting. So how can i do this? (2 Replies)
Discussion started by: anupdas
2 Replies

5. Shell Programming and Scripting

Shell argument

I need to create a Kash script that will read two arguments. So if the user enters anything but 2 arguments then they will get and error message. If they enter the two arguments then it will print them out in reverse order. Does anyone know how i can do this? (7 Replies)
Discussion started by: vthokiefan
7 Replies

6. UNIX for Dummies Questions & Answers

Shell script $0 argument

Hi, If not running a shell script file in current shell (. ./fileName) then $0 represents the executable file name. But in case of invoking shell script file in current shell then i m getting "$0 as -bash" . In such case how can i get the program name (running shell script file name)? Thanks, (2 Replies)
Discussion started by: painulyarun
2 Replies

7. UNIX for Dummies Questions & Answers

Very simple argument in scripting question

I tried to do a search, but it couldnt pinpoint what my answer since using limited but broad keywords. Sorry in advance ; ; Im limited to using Bourne shell scripting only, atm I have the following code (just the heading part of it) ... ... # VARIABLE DECLARATION # ==================== ... (2 Replies)
Discussion started by: eeto
2 Replies

8. Shell Programming and Scripting

printing last argument in shell script

All, I am having a shell script and i will pass different argument diferent time . Please tell me how can i find the last argument that i passsed each time when i exec the script. Thanks, Arun. (5 Replies)
Discussion started by: arunkumar_mca
5 Replies

9. Shell Programming and Scripting

difference between AIX shell scripting and Unix shell scripting.

please give the difference between AIX shell scripting and Unix shell scripting. (2 Replies)
Discussion started by: haroonec
2 Replies

10. Shell Programming and Scripting

shell script argument parsing

how to parse the command line argument to look for '@' sign and the following with '.'. In my shell script one of the argument passed is email address. I want to parse this email address to look for correct format. rmjoe123@hotmail.com has '@' sign and followed by a '.' to be more... (1 Reply)
Discussion started by: rmjoe
1 Replies
Login or Register to Ask a Question