File download.sh of Package refblas3-test
#! /bin/sh ardir=refblas3-test-3.0 rm -f sblat* dblat* cblat* zblat* rm -rf $ardir mkdir $ardir precision="s d z c" tests1="blat1 " tests="blat2 blat3" datasuffix=d netliburl=http://ftp.netlib.org/blas for i in $precision; do for j in $tests1; do #echo $i$j wget $netliburl/$i$j mv $i$j $ardir/$i$j.f done; for j in $tests; do #echo $i$j #echo $i$j$datasuffix; wget $netliburl/$i$j wget $netliburl/$i$j$datasuffix mv $i$j $ardir/$i$j.f mv $i$j$datasuffix $ardir/ done; done tar -czf $ardir.tgz $ardir