You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
149 B
4 lines
149 B
12 years ago
|
TMPFILE=`mktemp -t search` || exit 1
|
||
|
for address in `./up1.sh $1`; do sleep 0.01; ./search1.sh -s $address $2 >> $TMPFILE & done
|
||
|
sleep 2
|
||
|
cat $TMPFILE
|