Skip to content

Instantly share code, notes, and snippets.

@paulgeringer
Created February 26, 2015 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulgeringer/54d3e8ac52e88256673b to your computer and use it in GitHub Desktop.
Save paulgeringer/54d3e8ac52e88256673b to your computer and use it in GitHub Desktop.
#!/bin/bash
function hi_there() {
cat <<< 'hi there'
}
function do_a_thing() {
echo "'$1' was said"
}
function this_thing() {
hi_there | do_a_thing
}
this_thing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment