2019-02-18 00:42:01 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-14 02:45:59 +03:00
|
|
|
country=$1
|
|
|
|
city=$2;
|
|
|
|
map=$3;
|
2019-02-18 00:42:01 +03:00
|
|
|
|
2021-02-14 02:45:59 +03:00
|
|
|
rm -rf ../data/input/${country}/${city}/screenshots/${map}.zip diff screens_before;
|
|
|
|
cd screenshots/${country}/${city}/${map};
|
2020-11-06 01:42:40 +03:00
|
|
|
zip ${map}.zip *;
|
2021-02-14 04:44:34 +03:00
|
|
|
mkdir -p ../../../../../data/input/${country}/${city}/screenshots/;
|
|
|
|
mv ${map}.zip ../../../../../data/input/${country}/${city}/screenshots/;
|
|
|
|
cd ../../../../;
|
2021-02-14 02:45:59 +03:00
|
|
|
rm -rf screenshots/${country}/${city}/${map};
|