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?
|
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:
How to best do that in Bash?
| |||
|
feedback
|
|
It is modestly complex. The quickest way is also unreliable:
That will spot " Normally you'd use
Etc. | |||||
feedback
|
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. | |||||||
feedback
|