bsh project
This commit is contained in:
4
tests/cmd_substitution/backticks.sh
Normal file
4
tests/cmd_substitution/backticks.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
if `echo true`; then
|
||||
echo ok
|
||||
fi
|
||||
`echo false`
|
||||
3
tests/cmd_substitution/basic.sh
Normal file
3
tests/cmd_substitution/basic.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
if $(echo true); then
|
||||
echo ok
|
||||
fi
|
||||
3
tests/cmd_substitution/with_while_loop.sh
Normal file
3
tests/cmd_substitution/with_while_loop.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
while $(echo false); do
|
||||
echo nope
|
||||
done
|
||||
Reference in New Issue
Block a user