How do I parse command line arguments in Bash?

Bash Space-Separated (e.g., –option argument) Output from copy-pasting the block above Usage Bash Equals-Separated (e.g., –option=argument) Output from copy-pasting the block above Usage To better understand ${i#*=} search for “Substring Removal” in this guide. It is functionally equivalent to `sed ‘s/[^=]*=//’ <<< “$i”` which calls a needless subprocess or `echo “$i” | sed ‘s/[^=]*=//’` which calls two needless subprocesses. Using bash with getopt[s] getopt(1) limitations (older, … Read more