Parent Directory
|
Revision Log
patch together a new source package that will include both the images and the manual
| 1 | #!/bin/sh |
| 2 | |
| 3 | tmp=`tempfile` |
| 4 | |
| 5 | while [ x"$1" != x ]; do |
| 6 | echo $1 |
| 7 | cat $1 \ |
| 8 | | tr -d '\t' \ |
| 9 | | sed -f formatparasect \ |
| 10 | | sed -f para1 \ |
| 11 | | sed '/<\/para>/{:a;N;/<para>/!ba;s/<\/para>\n*<para>/<\/para><para>/;}' \ |
| 12 | | cat -s > $tmp |
| 13 | cp $tmp $1 |
| 14 | shift; |
| 15 | done |
| 16 | |
| 17 | rm -f $tmp |
| 18 | |
| 19 | # | sed -f fix \ |
| Name | Value |
|---|---|
| svn:executable | * |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |