mirror of
https://github.com/tests-always-included/mo.git
synced 2024-12-18 16:27:52 +00:00
45475ec77e
Add a demo/sourcing.vars file to be used by the associated demo script. Modified mo argument parsing so that --help and --source=file do not need to be the first arguments for mo. And can in fact appear after or in the middle of filenames.
4 lines
91 B
Plaintext
4 lines
91 B
Plaintext
export VAR=value
|
|
export ARR=(1 2 3)
|
|
declare -A ASSOC_ARR
|
|
export ASSOC_ARR=([a]=AAA [b]=BBB) |