diff options
-rw-r--r-- | bash.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -88,3 +88,10 @@ All keys: *) error "Unexpected option ${flag}" ;; esac done + +### With positional arguments + +Positional arguments will have to be supplied after flag options (`command +[options] <args>`): + + shift $((OPTIND-1)) |