Created
January 6, 2014 14:30
-
-
Save mytory/8283543 to your computer and use it in GitHub Desktop.
This file contains 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
// execute with nodejs on bash terminal. | |
var string = "test text"; | |
for(var i = 0; i < 110; i++){ | |
// 스타일링 : \033[스타일번호m문자열\033[m | |
// 강조 스타일링 : \033[01;스타일번호m문자열\033[m | |
console.log(i + " => " + "\033[" + i + "m" + string + "\033[m" + " " + "\033[01;" + i + "m" + string + "\033[m"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment