현재 디레토리 하부구조에서 특정 문자열을 포함하고 있는 모든 파일 목록 찾기
find . -type f | xargs grep -l web_test > /tmp/t.txt
목록파일을 읽어들여 목록에 나열된 각 파일에서 특정 문자열을 새로운 문자열로
치환하는 명령어
sh rep.sh /tmp/t.txt web_test testibm01 나열된 파일에서 web_test를 testibm01로 변경
rep.sh 내용
#!/bin/sh
if [ $# != 3 ];then
echo "Uages: /tmp/rep.sh <filelist> <old_str> <new_str>"
exit;
fi
set -x
mkdir -p /tmp/tt
for file in `cat $1`
do
echo ""
echo $file
cat $file | sed -e "s/$2/$3/g" > /tmp/tt/temp.txt
mv /tmp/tt/temp.txt $file
done
set +x
'3. OS이야기' 카테고리의 다른 글
Linux의 역사, 탄생 배경 (0) | 2014.05.28 |
---|---|
HP hostname 변경하기 (0) | 2010.06.04 |
Unix 계열에서 디렉토리명 일괄 변경하기 (0) | 2010.03.24 |
HP에서 SIGHUP( kill -6 )이 안될경우 (0) | 2010.03.24 |
tar에서 gzip 까지 한번에 압축하고 풀기 (0) | 2010.03.23 |