
#!/bin/sh
# File	: get_netapp-trs.sh
# By	: MaartenDeBoer.nl, 140314
# Subject	: Scripts to get NetApp TRs
#http://www.netapp.com/us/media/tr-3481.pdf

cd ${HOME}/data/
N1S="2 3 4"
N2S="0 1 2 3 4 5 6 7 8 9"
for N1 in ${N1S}
do
  for N2 in ${N2S}
  do
    for N3 in ${N2S}
    do
      for N4 in ${N2S}
      do
        echo ${N1}${N2}${N3}${N4}
        wget http://www.netapp.com/us/media/tr-${N1}${N2}${N3}${N4}.pdf

      done
    done
  done
done



exit 0

