sed를 이용하여 특정 파일(.classpath) 수정하고 커밋하기
sed 사용할 때 enter는 '\n' 로 사용하면 된다. 특수문자는 그대로 쓰면 되고, / 만 유의하면 됨.
find . -maxdepth 1 -name '.classpath' -print | xargs sed -i 's/<classpath>/<classpath>\n <classpathentry excluding="sql-map*.properties" kind="src" path="src\/conf"\/> /g' ;
svn commit -m 'DEVSUS-208' --username knight76
'unix and linux' 카테고리의 다른 글
파일 하나만 Rsync하기 (0) | 2009.10.08 |
---|---|
SMTP 서버 테스트 (0) | 2009.08.14 |
How to get the biggest filesystem In all filesystem (0) | 2009.06.09 |
bash와 csh의 차이점 (0) | 2009.03.24 |
시스템 정보 받아오기 #2 (0) | 2009.03.24 |