shell/smoke/t_variables
Petr Šplíchal 7f89380569 Add tests from the upstream first repo
Adding an initial set of tests from the upstream first repository:
https://upstreamfirst.fedorainfracloud.org/bash
2018-01-11 11:18:23 +01:00

4 lines
101 B
Text

testvar2=${testvar1:-default}
testvar3='OK'
testvar4=${testvar3:-default}
echo "$testvar2,$testvar4"