PCRE (Perl Compatible Regular Expressions)
Perl 5 호환의 정규표현을 C언어로 만든 라이브러리 (BSD라이센스로 배포된다.)
pere 다운로드 URL http://pcre.org/
# rpm -q pcre
# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.42.tar.gz
# tar zxf pcre-8.42.tar.gz
# cd pcre-8.42
# ./configure --prefix=/soft/pcre8.42 :: 설치 폴더 변경시 --prefix
# make && make install