쉘스크립트 글자 색상 변경

프로그래밍/BASH SHELL|2017. 3. 27. 16:22
반응형

쉘스크립트에 글자 색상 변경


txtblk='\e[0;30m' # Black - Regular
txtred='\e[0;31m' # Red
txtgrn='\e[0;32m' # Green
txtylw='\e[1;33m' # Yellow
txtblu='\e[0;34m' # Blue
txtpur='\e[0;35m' # Purple
txtcyn='\e[0;36m' # Cyan
txtrst='\e[0m'    # Text Reset 


쉘스크립트 생성하면서 위 상단에 변수값을 지정한 후 호출하면서 사용하면 됩니다. 



[출처] http://blog.naver.com/theswice/220614922160

반응형

댓글()