Ubuntu 10.04 LTS에서 테스트 완료

function svn {
  command svn "$@" | awk '
  BEGIN {
    cpt_c=0;
  }
  {
    if        ($1=="C") {
      cpt_c=cpt_c+1;
      print "\033[31m" $0 "\033[00m";  # Conflicts are displayed in red
    }
    else if   ($1=="A") {
      print "\033[32m" $0 "\033[00m";  # Add in green
    }
    else if   ($1=="?") {
      print "\033[36m" $0 "\033[00m";  # New in cyan
    }
    else if   ($1=="D") {
      print "\033[35m" $0 "\033[00m";  # Delete in magenta
    }
    else                {
      print $0;                        # No color, just print the line
    }
  }
  END {
    print cpt_c, " conflicts are found.";
  }';
} 

[링크 : http://stackoverflow.com/questions/8786400/svn-add-colors-on-command-line-svn-with-awk-in-bash]



\e[00m"

00에 숫자가 들어가면 된다.
30대는 foreground color
40대는 background color 를 지칭하고

1~7은 아래의 색상값을 가지게 된다.


[링크 : http://en.wikipedia.org/wiki/ANSI_escape_code]
[링크 : http://sunyzero.egloos.com/viewer/4282610]
+
svn ci 할때 뭔가 에러가 발생하는 기분이니 확인필요 
Posted by 구차니