I know that I can easily get positioned parameters like this in bash:

$0 or $1

I want to be able to use flag options like this to specify for what each parameter is used:

mysql -u user -h host

What is the best way to get -u param value and -h param value by flag instead of by position?

11 Answers
11

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *