Skip to content

Instantly share code, notes, and snippets.

@mytory
Created January 6, 2014 14:30
Show Gist options
  • Save mytory/8283543 to your computer and use it in GitHub Desktop.
Save mytory/8283543 to your computer and use it in GitHub Desktop.
// 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