argument hysteresis?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting argument hysteresis?
# 8  
Old 07-09-2008
And you are also running it in the current shell so there is no real surprise that 0 args gives a non zero result since you used set on the previous run.
# 9  
Old 07-10-2008
Haha no this is not a joke, but I really just make my first steps in shell scripting, and I think forums are very helpful. So I was just playing with 'for' loops, '$#', '$@' ... I just copied some stuff from websites on shell scripting and played with them.

Hell don't know what the "set -- $arg_i" means, just read that it "should be done like this" (to test if the argument is not null or something?)

But it works if I comment out that line, what does that line mean then? Thanks a lot!

ps: am I right that it keeps in mind the last argument? When I give an argument list, it only keeps the last one...

Last edited by MarkZWEERS; 07-10-2008 at 01:22 AM.. Reason: ps
# 10  
Old 07-10-2008
Referring to reborg's point, you should avoid running your script with the . or source prefix. Traditionally you would allow scripts to be run in their own subshell, unless it has a particular requirement to modify the environment of your current shell, which results in the behaviour you observed (i.e. variable values are retained).
# 11  
Old 07-10-2008
I've asked a question about the '.' prefix in this thread:

https://www.unix.com/shell-programmin...#post302213109

thanks a lot!
# 12  
Old 07-10-2008
Quote:
Referring to reborg's point, you should avoid running your script with the . or source prefix. Traditionally you would allow scripts to be run in their own subshell, unless it has a particular requirement to modify the environment of your current shell, which results in the behaviour you observed (i.e. variable values are retained).
Just to clarify, the arguments are reset at every run regardless of the invocation - current shell vs. subshell:

Code:
$ cat arguments.sh
printf "You've typed %d arguments\n" $#
printf "The arguments are: %s\n" "$@"
$ . arguments.sh
You've typed 0 arguments
The arguments are:
$ . arguments.sh a
You've typed 1 arguments
The arguments are: a
$ . arguments.sh
You've typed 0 arguments
The arguments are:

And of course, when you invoke a script with the . (period) scriptname syntax you're modifying the current environment:

Code:
$ cat arguments.sh
printf "You've typed %d arguments\n" $#
printf "The arguments are: %s\n" "$@"
set -- "$@"
$ . arguments.sh
You've typed 0 arguments
The arguments are:
$ . arguments.sh a
You've typed 1 arguments
The arguments are: a
$ . arguments.sh
You've typed 1 arguments
The arguments are: a
$ ./arguments.sh
You've typed 0 arguments
The arguments are:

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to substitute one argument into another?

Hello Friends, I am not able to solve something which looks silly..after spending some time around it, thought of positing it here. I want to get $2, $3... into user. but I want to control the sequence by count. I want to assign $2 user..then $3 to user..then $4 to user etc. how can I... (4 Replies)
Discussion started by: venkat4tech
4 Replies

2. UNIX for Advanced & Expert Users

Error:--test: argument expected--Even though i give an argument.

Hi All, I am running the script VBoxManage list vms |sed 's/"//g' | cut -d " " -f1 > har1out.mytxt result=`cat har1out.mytxt | grep $1' echo $result echo $1 { if then echo pass else echo fail fi (2 Replies)
Discussion started by: harsha85
2 Replies

3. Shell Programming and Scripting

Make script that run with argument if not run from configuration file argument

Hello, Is there any method thorugh which script can take argument if pass otherwise if argument doesn't pass then it takes the argument from the configuration file i.e I am workiing on a script which will run through crontab and the script will chekout the code ,zip and copy to the... (3 Replies)
Discussion started by: rohit22hamirpur
3 Replies

4. Shell Programming and Scripting

argument

Im sorry but I'm in need of help. How would I give the user the option to include the name of an html file as an arugment for the script? but if none is provided, then the script should prompt the user for the file name. I have sed 's/<*>//g' yourfile.html | uniq >newfile.txt so far I have... (7 Replies)
Discussion started by: clicstic
7 Replies

5. Shell Programming and Scripting

Cannot compare argument in if statement in csh/grep command if argument starts with “-“

If ($argv == “-debug”) then Echo “in loop” Endif But this is not working. If I modify this code and remove “-“, then it works. Similarly I am getting problem using grep command also Grep “-debug” Filename Can someone please help me on how to resolve these... (1 Reply)
Discussion started by: sarbjit
1 Replies

6. Shell Programming and Scripting

Array as argument

hi I've 2 bash script, in the first i define an array and I'd like to pass it as argument to the second script. For example: first_bash: k=(1 2 3 4) ....... #in the end i call the 2 script ./second_bash $k then in the second_bash: ..... echo "${1}" #this not work but i'm... (7 Replies)
Discussion started by: Dedalus
7 Replies

7. Shell Programming and Scripting

get positive number n as argument script must calculate the factorial of its argument

Can someone please help me with this SHELL script? I need to create a script that gets a positive number n as an argument. The script must calculate the factorial of its argument. In other words, it must calculate n!=1x2x3x...xn. Note that 0!=1. Here is a start but I have no clue how to... (3 Replies)
Discussion started by: I-1
3 Replies

8. UNIX for Dummies Questions & Answers

How to find the last argument in a argument line?

How to find the last argument in a argument line? (4 Replies)
Discussion started by: nehagupta2008
4 Replies

9. Shell Programming and Scripting

argument parsing...

Hi all, Iam a beginer in shell scripting. i need a script that can parse the arguments and store them in variables. ex: ./myScript -v v1 -h v2 -c v3...... can someone suggest me...? tnx in adv. (1 Reply)
Discussion started by: midhun_u
1 Replies

10. Shell Programming and Scripting

argument help

if i have 2 arguments $1 and $2 how can i append them so that $2 is added to $1? It is really confusing me because it seems so simple, yet i can't get the shell script to work properly. Thanks. (2 Replies)
Discussion started by: brentdeback
2 Replies
Login or Register to Ask a Question