#!/bin/sh
# configure and compile grep (C only) using one core, defaults, do not install

cd /tmp
rm -rf grep-3.3

echo "untar"
tar -xf /sources/grep-3.3.tar.xz
cd grep-3.3

echo "configure and compile"

time ( ./configure && make -j1 )


