Files
podi/recipe/hello
2022-02-09 13:11:08 +01:00

11 lines
169 B
Plaintext

# a barebones recipe
hello(){ echo ' \o/ hello' ; }
world(){ echo ' world' ; }
mycmd(){ # mycmd [myopt] : simple example cmd
echo "howdy! $1"
}
on hello world