Files
podi/recipe/hello

11 lines
202 B
Plaintext
Raw Normal View History

2022-02-13 14:14:18 +01:00
# info: a barebones recipe (startingpoint for own recipe)
2022-02-09 13:11:08 +01:00
2022-02-09 18:09:31 +01:00
hello(){ header myrecipe; }
world(){ print helloworld; }
2022-02-09 13:11:08 +01:00
mycmd(){ # mycmd [myopt] : simple example cmd
echo "howdy! $1"
}
on hello world