From 3c39f4a4c716f03bc0e054e66af92f54b7a0a596 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 9 Jun 1998 14:08:42 +0000 Subject: [PATCH] lilypond-1.0.1 --- stepmake/bin/text2html.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 stepmake/bin/text2html.sh diff --git a/stepmake/bin/text2html.sh b/stepmake/bin/text2html.sh new file mode 100644 index 0000000000..0547aaeb8d --- /dev/null +++ b/stepmake/bin/text2html.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# text2html.sh + +if [ $# -ne 2 ]; then + echo "Usage: text2html TEXT-FILE HTML-FILENAME" + exit 2 +fi + +infile=$1 +outfile=$2 +rm -f $outfile +echo "" > $outfile +echo "" >> $outfile +cat $infile >> $outfile +echo "" >> $outfile +echo "" >> $outfile + -- 2.39.5