[rendering] This simple trick didn't work...
[wikipediardware.git] / host-tools / scripts / fetch_wget.sh
blob7284a4fc93cb16892f77999abed74dac47cf8536
1 #!/usr/bin/env bash
3 echo "Going to directory $1"
4 cd $1
5 for file in *.wget;
6 do
7 echo $file
8 wget -O /dev/null -i $file
9 touch "$file.complete"
10 done