Skip to content

Instantly share code, notes, and snippets.

@gongo
Last active November 17, 2016 05:24
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 gongo/21d8df627ebf3fff155c41901ca3374b to your computer and use it in GitHub Desktop.
Save gongo/21d8df627ebf3fff155c41901ca3374b to your computer and use it in GitHub Desktop.
シェルスクリプトの関数コメントのスタイル、いい感じの模索してる
#!/bin/sh
#
# Short description
#
# Long description (multiline)
# :pizza: :pizza: :pizza:
#
# Examples:
#
# pizza_order "bacon" 3 && {
# echo "Successful order. Thank you!!"
# }
#
# Args:
#
# $1 - Pizza name to order
# $2 - Number to order
#
# Return:
#
# Status of whether the order was successful
#
pizza_order() {
# (order)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment