repo.or.cz
/
limo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
removed main.cfg, not used anywhere
[limo.git]
/
tests
/
spidertest.sh
blob
82764928f603edb3065b126bc97f74e9ebfff3a0
1
#!/bin/zsh
2
3
PROCS
=
$1
4
5
if
[
-z
"
$PROCS
"
];
then
6
echo
"usage:
$0
<num-simultaneous-processes>"
7
exit
1
8
fi
9
10
for
i
in
{
1
..
$PROCS
};
do
11
wget
-r -l
inf
-p
http
://
localhost
2
>&
1
|
grep
Downloaded |
awk
"{print
$i
,\
$0
}"
&
12
done
13