Linux

centos grep 2.14.* 설치 하기

Naan 2014. 4. 2. 16:00
반응형

centos grep 2.14.* 설치 하기


간단하다.


http://ftp.gnu.org/gnu/grep/


xz 로 압축되어 있는 파일들이 있다.


# yum install xz* 

설치후


# xz -d grep-2.14.tar.xz

# tar -xvf grep-2.14.tar

# cd tar grep-2.14

# ./configure

# make && make install


# grep --version

grep (GNU grep) 2.14

Copyright (C) 2012 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.


Written by Mike Haertel and others, see <http://git.sv.gnu.org/cgit/grep.git/tree/AUTHORS>.


설치 된것을 확인 할수 있다.



반응형