neue Datei: Readme.md

clients^2
Clemens Klug 2018-06-08 20:55:52 +02:00
parent 4d0e5e7ac1
commit 0f8863817b
1 changed files with 10 additions and 0 deletions

10
Readme.md Normal file
View File

@ -0,0 +1,10 @@
# Geogame Log Analyzer
## log data
### set mtime of gpx files to the first date:
```
for i in */*; do touch -m -d "$(head -n 15 $i|grep time | head -n 1 |cut -d">" -f 3|cut -d"<" -f1)" $i; done
for i in */; do touch -m -d "$(head -n 15 $i/*.gpx|grep time | head -n 1 |cut -d">" -f 3|cut -d"<" -f1)" $i; done
```