mirror of https://gitlab.com/QEF/q-e.git
29 lines
481 B
Bash
Executable File
29 lines
481 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 txt_docfile"
|
|
exit 1
|
|
fi
|
|
|
|
docfile=$1
|
|
|
|
echo "
|
|
<html>
|
|
<body>
|
|
<pre>" > head.$$
|
|
|
|
echo "
|
|
</pre>
|
|
</body>
|
|
</html>" > tail.$$
|
|
|
|
# filter out line: "*** FILE AUTOMATICALLY CREATED ..."
|
|
awk '$0 !~ /FILE AUTOMATICALLY CREATED: DO NOT EDIT, CHANGES WILL BE LOST/ { print; }' $docfile > body.$$
|
|
sed 's/</\<\;/g' body.$$ | sed "s/>/\>\;/g" - > body2.$$
|
|
|
|
cat head.$$ body2.$$ tail.$$
|
|
rm -f head.$$ body.$$ body2.$$ tail.$$
|
|
|
|
|
|
|