/usr/bin/sgml2txt is in linuxdoc-tools 0.9.69-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/bin/sh
if which groff > /dev/null 2>&1; then
exec /usr/bin/linuxdoc --backend=txt "$@"
else
echo "Please install groff to use LinuxDoc DTD SGML Text Conversion"
exit 1
fi
|