Skip to content

Instantly share code, notes, and snippets.

@waywardone
Created January 19, 2021 04:46
Show Gist options
  • Save waywardone/4273b7b52b67d906d3d214fe9a6ad248 to your computer and use it in GitHub Desktop.
Save waywardone/4273b7b52b67d906d3d214fe9a6ad248 to your computer and use it in GitHub Desktop.

Convert Garmin FIT to GPX

# Tested in zsh
for f in *.fit; do echo ${f:t:r}; gpsbabel -i garmin_fit -f "$f" -o gpx -F "${f:t:r}.gpx"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment