mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
13 lines
192 B
Plaintext
13 lines
192 B
Plaintext
TEXT='Hi, there!'
|
|
|
|
echo: echo/normal echo/colors/red echo/indent
|
|
|
|
echo/normal:
|
|
echo "$TEXT"
|
|
|
|
echo/colors/red:
|
|
echo "$TEXT" | red
|
|
|
|
echo/indent:
|
|
echo "$TEXT" | red | bake_indent '>'
|