24 lines
391 B
Bash
Executable File
24 lines
391 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
rm -rf p/*
|
|
# rm -rf n/*
|
|
|
|
python ./crawler_african.py &
|
|
python ./crawler_beach.py &
|
|
python ./crawler_building.py &
|
|
python ./crawler_bus.py &
|
|
python ./crawler_dinosaur.py &
|
|
python ./crawler_dish.py &
|
|
python ./crawler_horse.py &
|
|
python ./crawler_mountain.py &
|
|
python ./crawler_flower.py &
|
|
python ./crawler_elephant.py &
|
|
# python ./crawler_n.py
|
|
|
|
|
|
wait
|
|
|
|
echo "done"
|