mirror of
https://github.com/coderofsalvation/podi.git
synced 2025-12-16 03:47:45 +01:00
11 lines
202 B
Plaintext
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
|