Files
podi/recipe/hello
2022-02-13 14:14:18 +01:00

11 lines
202 B
Plaintext

# info: a barebones recipe (startingpoint for own recipe)
hello(){ header myrecipe; }
world(){ print helloworld; }
mycmd(){ # mycmd [myopt] : simple example cmd
echo "howdy! $1"
}
on hello world