하위디렉토리에서 php 파일을 찾아서 <BR> 을 <br /> 로 일괄 변경
로빈아빠
본문
하위디렉토리에서 php 파일을 찾아서 <BR> 을 <br /> 로 일괄 변경
find . -name "*.php" -exec perl -pi -e 's/<BR>/<br \/>/ig' {} \;
하위디렉토리에서 php 파일에서 특정 문자(ie) 검색
find . -name "*.php" | xargs grep -n "/ie" | more
하위디렉토리에서 php 파일을 찾아서 특정 문자 변경하기
mysql_escape_string 을 mysql_real_escape_string 로 변경
find . -name "*.php" -exec perl -pi -e 's/mysql_escape_string/mysql_real_escape_string/g' {} \;
preg_replace 옵션 /ie 에서 e 제거
find . -name "*.php" -exec perl -pi -e 's/\/ie"/\/i"/g' {} \;
댓글목록
등록된 댓글이 없습니다.