I would like to pass all script arguments to the foo function, and if the first argument is something, pass all the rest arguments to the bar function.

I implemented this like that:

foo() {
  if [ "$1" = 'something' ]; then
    args=("$@")
    unset args[0]
    bar $args
  fi
}

foo $@

Is that possible to simplify this?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Yes, use shift

foo(){ 
  if [[ $1 == 'something' ]]; then
    shift
    bar "$@" 
  fi
}

foo "$@"
link|improve this answer
Thanks! Are the quotes really required in foo "$@" and bar "$@"? – Misha Moroshko Jan 27 at 4:39
1  
@MishaMoroshko it's not necessary but you should always quote your variables unless you explicitly have a reason not to. Most of the time you don't want word splitting. I didn't quote the $1 because you don't have word splitting problems inside of [[ ]]. I don't believe the same applies to [ ] though – SiegeX Jan 27 at 5:29
As always good info @SiegeX .. :) +1 – Jaypal Singh Jan 27 at 7:36
@SiegeX You should still quote the $1 because it'll fail if there are no parameters passed [: ==: unary operator expected. – nicerobot Jan 27 at 15:34
1  
@nicerobot that is only an issue with [ ], not [[ ]]. This is why I said in my previous comment I don't believe the same applies to [ ] though – SiegeX Jan 27 at 16:45
show 1 more comment
feedback

If you don't need the args array for anything else in foo, you can avoid it entirely as in SiegeX's answer. If you need args for some other reason, what you are doing is the simplest way.

There is a bug in your code. When you call bar, you're only passing the first element of args. To pass all elements, you need to do this:

bar "${args[@]}"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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