Is there a way to change the command line arguments in a bash script. Say for example, a bash script is invoked the following way:

./foo arg1 arg2  

Is there a way to change the value of arg1 within the script? Say, something like

$1="chintz"  

Thanks,
Sriram

link|improve this question

78% accept rate
feedback

2 Answers

up vote 11 down vote accepted

You have to reset all arguments. To change e.g. $3:

$ set -- "${@:1:2}" "new" "${@:4}"

EDIT:

Basically you set all arguments to their current values, except for the one(s) that you want to change.

The "${@:1:2}" notation is expanded to the two (hence the 2 in the notation) positional arguments starting from offset 1 (i.e. $1). It is a shorthand for "$1" "$2" in this case, but it is much more useful when you want to replace e.g. "${17}".

link|improve this answer
so, in order to change $3, I must change $1 and $2 as well, is it? And change them to what? What does "reset" mean? – Sriram Jan 28 '11 at 11:31
To $1 and $2, of course. – Ignacio Vazquez-Abrams Jan 28 '11 at 11:33
+1: That is very neat! – Johnsyweb Jan 28 '11 at 12:39
worked like a charm!! that is super neat! thanks! – Sriram Feb 11 '11 at 7:59
feedback

You are better off assigning $1 and $2 to more meaningful variables (I don't know, input_filename = $1 and output_filename = $2 or something) and then overwriting one of those variables (input_filename = 'chintz'), leaving the input to the script unchanged, in case it is needed elsewhere.

link|improve this answer
I wanted an approach where I could alter one of the input arguments itself. I needed to do that since I wanted to return a value from the script. The answer suggested by thkala worked well. Thanks for the response!!! – Sriram Feb 11 '11 at 8:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.