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