Adding an initial set of tests from the upstream first repository: https://upstreamfirst.fedorainfracloud.org/bash
6 lines
159 B
Text
6 lines
159 B
Text
true && echo -n 'operator,'
|
|
if true; then echo -n 'if,'; fi
|
|
if ! true; then echo -n 'if,'; else echo -n 'else,'; fi
|
|
if [ 'notnul' ]; then echo -n 'test'; fi
|
|
|
|
|