Bash Standard Command Line Option Processing Pattern: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * bash =Overview= <syntaxhighlight lang='bash'> while -n $1 ; do if done </syntaxhighlight>")
(No difference)

Revision as of 05:51, 20 March 2019

Internal

Overview

while [[ -n $1 ]]; do
  if 
done