#!/bin/sh
# help_gen - generates help.h include file from text file help.txt

/bin/rm -f help.h
/bin/echo \/\* help.h , generated by help_gen from help.txt \*\/ > help.h
/bin/echo static char \*help_txt\[\] = \{ >> help.h
/usr/bin/awk '{print quot $0 quot comm }' quot=\" comm=\, help.txt >> help.h
/bin/echo \"%END\" >> help.h
/bin/echo \} \; >> help.h
# $Id: help_gen,v 1.1.1.1 2000/05/17 19:22:13 marisa Exp $
