Compare commits
2 Commits
c75df5dc99
...
b66a34bce3
| Author | SHA1 | Date |
|---|---|---|
|
|
b66a34bce3 | |
|
|
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