blob: 0d9bd798a28f743896a82afac3323733077d6278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
sedscript=`tempfile`
cat <<'EOF' > $sedscript
/@c %\*\*add dircategory and direntry here/a\
@dircategory Information\
@direntry\
* Debian menu: \(menu\). The Debian menu system\
@end direntry
EOF
sed -f $sedscript <$1 >$2
rm $sedscript
|