repo.or.cz
/
wikipediardware.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[rendering] This simple trick didn't work...
[wikipediardware.git]
/
host-tools
/
scripts
/
fetch_wget.sh
blob
7284a4fc93cb16892f77999abed74dac47cf8536
1
#!/usr/bin/env bash
2
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