Merge branch 'clients' of git.clkl.de:ma/project into clients
commit
3abefe8522
|
|
@ -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