coursepointer 0.3.4

Converts waypoints into Garmin FIT course points
Documentation
#! /bin/sh
#
# printlogs.cgi
# cgi script for printing error logs
#
# Copyright (c) Charles Karney (2011) <karney@alum.mit.edu> and licensed
# under the MIT/X11 License.  For more information, see
# https://geographiclib.sourceforge.io/

echo Content-type: text/html
echo
cat <<EOF
<html>
  <header>
    <title>
      GeographicLib web utilities log
    </title>
  </header>
  <body>
    <pre>
EOF
cat ../persistent/utilities.log
cat <<EOF
    </pre>
  </body>
</html>