[go: up one dir, main page]

File: rtf

package info (click to toggle)
docbook-utils 0.6.14-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,116 kB
  • ctags: 131
  • sloc: perl: 1,103; sh: 858; makefile: 82
file content (11 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
# Backend to convert something into RTF
# Send any comments to Eric Bischoff <eric@caldera.de>
# This program is under GPL license. See LICENSE file for details.

# Convert to RTF
$SGML_JADE -t rtf -o ${SGML_FILE_NAME}.rtf $SGML_ARGUMENTS
if [ $? -ne 0 ]
then exit 1
fi

exit 0