I want to test if an augment (e.g. -h) was passed into my bash script or not.

In a Ruby script that would be:

#!/usr/bin/env ruby
puts "Has -h" if ARGV.include? "-h"

How to best do that in Bash?

link|improve this question

77% accept rate
feedback

2 Answers

It is modestly complex. The quickest way is also unreliable:

case "$*" in
(*-h*) echo "Has -h";;
easc

That will spot "command this-here" as having "-h".

Normally you'd use getopts to parse for arguments that you expect:

while getopts habcf: opt
do
    case "$opt" in
    (h) echo "Has -h";;
    ([abc])
        echo "Got -$opt";;
    (f) echo "File: $OPTARG";;
    esac
done

shift (($OPTIND - 1))
# General (non-option) arguments are now in "$@"

Etc.

link|improve this answer
@Aleksandr: which shell are you using? I just checked with Korn shell on AIX and Bash on Linux and both worked: sh xx.sh -h gave "Has -h". Or did you get caught by the original version of my answer which had the options string habcf: after opt? – Jonathan Leffler Jun 2 '11 at 23:08
now it works. Tested with Bash 4.1.5 and dash in Debian 6 – Aleksandr Levchuk Jun 2 '11 at 23:14
feedback
#!/bin/bash
while getopts h x; do
  echo "has -h";
done; OPTIND=0

As Jonathan Leffler pointed out OPTIND=0 will reset the getpots list. That's in case the test needs to be done more than once.

link|improve this answer
1  
The option is not removed. The trick to reparsing the argument list is to reset OPTIND=0 between the getopts loops. – Jonathan Leffler Jun 2 '11 at 23:30
Understood. Verified. Answer corrected. Thanks to Jonathan Leffler for all the tips that lead to this answer. – Aleksandr Levchuk Jun 3 '11 at 5:57
feedback

Your Answer

 
or
required, but never shown

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