lfs-scripts/scripts/chapter8/8.33-grep.sh
2023-01-11 15:47:22 +05:30

27 lines
221 B
Bash

#!/bin/bash
cd /sources
tar xf grep-3.7.tar.xz
cd grep-3.7
./configure --prefix=/usr
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make check
make install
cd /sources
rm -rf grep-3.7