#!/bin/sh
#
# drft06rr_scripts - Generate a page with links to scripts
#
# Makes html file drft06rr_scripts.html
#
# Paul Wessel, 20-NOV-2001
date=`date`
prefix=drft06rr
mkdir -p $prefix/scripts
cat << EOF > $prefix/drft06rr_scripts.html
Drift Expedition Leg 6: GMT Bourne shell scripts
Drift Expedition Leg 6: GMT Bourne shell scripts
This page contains a list of all the GMT and/or Bourne shell scripts used to
generate this web site. The scripts may also be modified to do slightly different
plots than the ones displayed, and may serve as inspiration to do other neat stuff.
The scripts are reasonably well documented so you should be able to find your way around.
The scripts may be copied freely. Note that many of the scripts are using GMT
version 4 beta; If GMT 4 is not released by the time you plan to use these scripts,
please email the GMT guru for instructions on how to get the beta release.

| TYPE: | FILE NAME: | PURPOSE OF FILE |
EOF
awk -F\| '{printf "  | %s | %s |
\n", $1, $1, $1, $2}' drft06rr_scripts.lis >> $prefix/drft06rr_scripts.html
cat << EOF >> $prefix/drft06rr_scripts.html
 | drft06rr_boxes.lis | Coordinates for each box |
 | drft06rr_smts.lis | Coordinates for each seamount target |
 | drft06rr_dredges.lis | List of seamount/box for each dredge |

Return to Drift Expedition Leg 6 home page
drft06rr_scripts: Page last updated $date by $USER.
EOF