Argument passing


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Argument passing
# 8  
Old 03-14-2013
DonCraguns suggestion is a very good one, but you showed - apart from syntactical errors - some lack of consideration. Lets go over your script:


Code:
#!/bin/ksh
set -x
c=$1
if [[ $c -le 9 ]]

This is the first problem: you expect a user to enter what you think he will enter. Never trust user input - in no way at all. The expression "$c -le 9" is an integer comparison and this in turn depends on only an integer being supplied by the user. How would your script react to this input:

Code:
/your/script blabla

or this:

Code:
/your/script "all hell breaks loose on this one"

In the first case your comparison will fail because you try to compare integer to string and in the second case it will even fail at c=$1 because the multi-word into which "$1" expands into will break the line. "$c" wil be assigned "all" (the first word) and the other words will lead to syntax errors.

To avoid the multi-word problem use quoting:

Code:
c="$1"

To avoi the integer-string problem first make sure your input is indeed an integer before you use integer comarison. This is called type-checking. Bottom line: always be paranoid about user input and assume it will make the least sense possible. It usually does.

Code:
elif [[ $c =~ "[a-z]" ]]

Even if this would work as expected it would again break on multi-word input because of the missing quoting. Further, what would happen with this input:

Code:
c="A"
...
elif [[ "$c" =~ "[a-z]" ]]

In fact it would NOT match at all! The reason is that UNIX IS CASE-SENSITIVE! "[a-z]" and "[A-Z]" are different and if you want to make sure it is indeed a character (as opposed to a lowercase character you have to test it for both:

Code:
c="A"
...
elif [[ "$c" =~ "[a-zA-Z]" ]]

Another thing is a further false assumption: you test (i assume now your tests would do what they are meant to do) for numbers smaller than 10 and single characters and if both tests fail you deduce that it has to be a multi-character string. What about numbers bigger than 10? What about strings like "!", which would fail on both tests before too?

I hope this helps.

bakunin
# 9  
Old 03-15-2013
Don Cragun:

elif [ ${#1} -eq 0 ]
then echo "$(basename $0): argument is an empty string" >&2
exit 2

./file 0
This "0" is taken as a single(1) argument, so the elif statement is skipping
Finally the result shown is:
output :
digit
# 10  
Old 03-15-2013
Quote:
Originally Posted by Roozo
Don Cragun:

elif [ ${#1} -eq 0 ]
then echo "$(basename $0): argument is an empty string" >&2
exit 2

./file 0
This "0" is taken as a single(1) argument, so the elif statement is skipping
Finally the result shown is:
output :
digit
I don't understand your comment.

If the script I provided is invoked with the single argument 0 then $#(the number of positional parameters) is 1 and ${#1}(the number of characters in the 1st positional parameter) is 1. So the [ ... ] commands in the if and both elif statements evaluate to false so no diagnostic is printed. Therefore the code continues with the case statement to determine what type character was supplied as the value of the single character given as the one and only operand to the script. Since 0 is in the digit character class, the script reports that 0 is a digit.

A way to get the diagnostic "file: argument is an empty string" to print would be to execute the command:
Code:
./file ""

since the number of characters in the empty string (${#1} when $1 is the expansion of "" in the shell after quote removal processing) is 0.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Passing a second argument

I am trying to pass a second argument like so: if ] then export ARG2=$2 else message "Second argument not specified: USAGE - $PROGRAM_NAME ARG1 ARG2" checkerror -e 2 -m "Please specify if it is a history or weekly (H or W) extract in the 2nd argument" fi however, it always goes... (4 Replies)
Discussion started by: MIA651
4 Replies

2. Shell Programming and Scripting

Help with passing argument

Hi, I have a script that is scheduled with cron and runs every night. The cron part looks like this: 00 20 * * 0,1,2,3,4,5,6 /usr/local/bin/BACKUP TBTARM HOT DELETE My issue is with the 3rd parameter. Somewhere in the script, i want to tell the script to delete some files if the 3rd... (7 Replies)
Discussion started by: dollypee
7 Replies

3. Programming

Passing argument to command in C

Hello all, New to C and I'm trying to write a program which can run a unix command. Would like to have the option of giving the user the ability to enter arguments e.g for "ls" be able to run "ls -l". I would appreciate any help. Thanks #include <stdio.h> #include <unistd.h> #include... (3 Replies)
Discussion started by: effizy
3 Replies

4. Shell Programming and Scripting

Help with Passing argument and testing

Hi all First of all thanks for everyone to read by doubt.Am beginner in shell scripting Following are my doubts i have to pass an argument to shellscript how can i do that second i have to test the argument and shows error when nothing is passes third i have to match exact argument... (3 Replies)
Discussion started by: zeebala1981
3 Replies

5. Shell Programming and Scripting

Passing argument to nawk

Hi all I have got a file digits.data containing the following data 1 3 4 2 4 9 7 3 1 7 3 10 I am writing a script that will pass an argument from C-shell to nawk command. But it seems the values in the nawk comman does not get set. the program does not print no values out. Here is the... (2 Replies)
Discussion started by: ganiel24
2 Replies

6. UNIX for Dummies Questions & Answers

Using * when passing argument to alias

I have some folders with this structure: /data/me/a123xxx Where "xxx" is some changing series of letters, and "123" changes so folders might look like: /data/me/a123xxx /data/me/a234ysd /data/me/a534sds etc. The numbers are what matter to me (they identify the folder), so I created an... (7 Replies)
Discussion started by: ramparts
7 Replies

7. Shell Programming and Scripting

passing Argument

Hi All, i have script like below.. echo "1) first option" echo "" echo "2) second option" echo "" echo "*) please enter the correct option" read select case $select in 1) echo "first option selected" ;; 2) echo "second option selected" ;; *) echo "please enter the correct... (4 Replies)
Discussion started by: Shahul
4 Replies

8. Shell Programming and Scripting

Problem in argument passing

Hell all, i have a problem in argument passing. print() { a=$1 b=$2 c=$3 echo $a echo $b echo $c } x="1 2 3" y="4 5 6" z="7 8 9" print $x $y $z. (4 Replies)
Discussion started by: tsaravanan
4 Replies

9. Shell Programming and Scripting

Passing more than one argument in a function

Hi All, Calling a function with one argument and storing the return value in a shell script is as below:( so far I know) value="`fun_1 "argument1"`" Its working perfectly for me. Can u help me with passing more than one argument and storing the return value Thnaks in advance JS (1 Reply)
Discussion started by: jisha
1 Replies

10. Shell Programming and Scripting

Problem with Argument Passing

Greetings, I am wrapping the monitoring commands like vmstat, sar, iostat and call via arguments I want ./unix_stats.sh -v vmstat -p <SEC> -d <Duration> to give vmstat values, and similarly iostat etc.,. Also if I give ./unix_stats.sh -v vmstat -i iostat -p <SEC> -d <Duration> should give... (4 Replies)
Discussion started by: A_Rod
4 Replies
Login or Register to Ask a Question