11 lines
422 B
Bash
11 lines
422 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -euxo pipefail
|
||
|
|
|
||
|
|
mkdir -p /tmp/re/
|
||
|
|
python 1_dump_listings.py | tee -a /tmp/re/1.log | tee -a /tmp/re/log.log
|
||
|
|
python 2_dump_detail.py | tee -a /tmp/re/2.log | tee -a /tmp/re/log.log
|
||
|
|
python 3_dump_images.py | tee -a /tmp/re/3.log | tee -a /tmp/re/log.log
|
||
|
|
python 4_detect_floorplan.py | tee -a /tmp/re/4.log | tee -a /tmp/re/log.log
|
||
|
|
python 5_routing.py | tee -a /tmp/re/5.log | tee -a /tmp/re/log.log
|