bsh project

This commit is contained in:
brice.boisson
2022-02-08 18:50:03 +01:00
commit 7744ceaa33
109 changed files with 9536 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
if `echo true`; then
echo ok
fi
`echo false`

View File

@@ -0,0 +1,3 @@
if $(echo true); then
echo ok
fi

View File

@@ -0,0 +1,3 @@
while $(echo false); do
echo nope
done