Compare commits

...

2 Commits

Author SHA1 Message Date
Clemens Klug b66a34bce3 Merge branch 'clients' of git.clkl.de:ma/project into clients 2018-06-08 20:57:18 +02:00
Clemens Klug 0f8863817b neue Datei: Readme.md 2018-06-08 20:55:52 +02:00
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
```