#!/bin/csh
#
# arc2gmt
#
# Awk script to take Arc/INFO UNGENERATE files from a line or poly
# COVERAGE (such as fault lineations, lava flows, etc. digitized in 
# Arc/INFO or ERDAS) and reformat for GMT
#
# July 1994 - Ray Wood - Original coding
# July 1997 - Dawn Wright - Incorporation into ArcGMT toolset
#
#####################################################################
BEGIN {print ">"}
{
  if ($1 == "END") {
    print ">"
    }
  if (NF == 2) {
    print $0
  }
}
END {}
