Skip to content

Instantly share code, notes, and snippets.

@hannestyden
Last active August 29, 2015 14:02
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 hannestyden/c65b8f111f8916343870 to your computer and use it in GitHub Desktop.
Save hannestyden/c65b8f111f8916343870 to your computer and use it in GitHub Desktop.
# dog = cat || less
dog () {
a=$(</dev/stdin)
echo $a | $((($(echo $a | wc -l) < $LINES)) && echo cat || echo less)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment