Refactor: 1. add print into console data, 2. rewrite CLI parsing, 4. the output format csv has been reworked. 5. Add information to README. For addition create python code for plot csv data
This commit is contained in:
16
asotr_all_unzip_auto.sh
Executable file
16
asotr_all_unzip_auto.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#! /bin/bash
|
||||
|
||||
if [ $# != 1 ]
|
||||
then
|
||||
echo "erorr use $0. Right use this script: "
|
||||
echo "$0 path"
|
||||
else
|
||||
cp ./target/release/asotr_csv ./data
|
||||
path_=$1
|
||||
find ${path_} -maxdepth 1 -type d | xargs -I {} ./asotr_unzip.sh {}
|
||||
|
||||
cd ./data
|
||||
./asotr_csv -d ${path_}
|
||||
|
||||
python3 ./plot_flight_all.py
|
||||
fi
|
||||
Reference in New Issue
Block a user