Created
October 25, 2012 03:52
-
-
Save tattyamm/3950326 to your computer and use it in GitHub Desktop.
シェルで緑色で出力
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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