centos7下安装pcre库(pcretest)
Posted dingxiaoqiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7下安装pcre库(pcretest)相关的知识,希望对你有一定的参考价值。
在linux下需要对正则表达式的验证,使用的验证工具是pcretest,这个工具集成在pcre库中,下面是安装教程。
安装环境是centos7.
1)首先去官网下载压缩包文件。
其他的source网站需要墙,点击https://www.pcre.org/,我使用的ftp下载的,https://ftp.pcre.org/pub/pcre/pcre-8.13.tar.gz
wget https://ftp.pcre.org/pub/pcre/pcre-8.13.tar.gz
2)解压缩
tar -xzvf pcre-8.13.tar.gz
3)进入该目录,运行configure
cd pcre-8.13 ./configure --enable-utf8
4) 执行make命令
make && make intall
OK !
以上是关于centos7下安装pcre库(pcretest)的主要内容,如果未能解决你的问题,请参考以下文章