# Exit on error:
set -e

wget http://ftpmirror.gnu.org/which/which-2.20.tar.gz
tar xf which-2.20.tar.gz
cd which-2.20
./configure --prefix=
make install
cd ..
rm -rf which-2.20
rm which-2.20.tar.gz

exit 0
