Skip to content

Instantly share code, notes, and snippets.

@TooTallNate
Created June 23, 2018 17:22
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 TooTallNate/702fa93cb22f09db02bd1f51b30b687d to your computer and use it in GitHub Desktop.
Save TooTallNate/702fa93cb22f09db02bd1f51b30b687d to your computer and use it in GitHub Desktop.
Basic "add" function for bash, for demonstration purposes
add() {
echo "$(( $1 + $2 ))"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment