Skip to content

Instantly share code, notes, and snippets.

@tattyamm
Created October 25, 2012 03:52
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 tattyamm/3950326 to your computer and use it in GitHub Desktop.
Save tattyamm/3950326 to your computer and use it in GitHub Desktop.
シェルで緑色で出力
#!/bin/sh
# 緑色で出力
greenEcho()
{
GREEN_STR="\033[0;32m"
COLOR_END="\033[0m"
echo "${GREEN_STR}$1${COLOR_END}"
}
greenEcho "hello!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment