Skip to content

Instantly share code, notes, and snippets.

@BenBrostoff
Created July 30, 2019 09:04
Show Gist options
  • Save BenBrostoff/91f40fd42c346d6832203203e4f3e1d4 to your computer and use it in GitHub Desktop.
Save BenBrostoff/91f40fd42c346d6832203203e4f3e1d4 to your computer and use it in GitHub Desktop.
MMR to TSX
# Hacky MMR to TCX bulk -> get these from MMR CSV, run in terminal while loged in
listOfWork="
https://www.mapmyrun.com/workout/export/<id1>/tcx
https://www.mapmyrun.com/workout/export/<id2>/tcx
https://www.mapmyrun.com/workout/export/<id3>/tcx
"
for workout in "$listOfWork"
do
echo "$workout"
open $workout
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment