Adding an initial set of tests from the upstream first repository: https://upstreamfirst.fedorainfracloud.org/bash
4 lines
101 B
Text
4 lines
101 B
Text
testvar2=${testvar1:-default}
|
|
testvar3='OK'
|
|
testvar4=${testvar3:-default}
|
|
echo "$testvar2,$testvar4"
|