- Log in to post comments
#!/bin/bash
LINK="http://weather.ou.edu/%7Eapw/projects/stress/stress-1.0.0.tar.gz"
# download and extract
wget $LINK -P /tmp
cd /tmp/
tar xzf stress-1.0.0.tar.gz
cd stress-1.0.0/
# compile
./configure && make
# optionaly you can install it or use the executable in src folder
make install