neue Datei: Readme.md
parent
4d0e5e7ac1
commit
0f8863817b
|
|
@ -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
|
||||||
|
```
|
||||||
Loading…
Reference in New Issue