improve everything

This commit is contained in:
nora 2021-12-19 16:17:09 +01:00
parent d69c1be8c8
commit 2910482b03
5 changed files with 98 additions and 47 deletions

View file

@ -10,7 +10,7 @@ env = { HELLO = "uwu hi ヾ(•ω•`)o" }
[pwd]
command = "pwd"
workdir = "./src"
workdir = "./src/controller"
[crash]
command = "cat fkasdjfölashjdflksd"
@ -32,4 +32,14 @@ while true; do
echo $counter
counter=$((counter+1))
done
"""
[many-lines]
command = """
counter=0
while [ $counter -lt 100 ]; do
echo $counter
counter=$((counter+1))
done
"""