1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/bin/bash
# Generate several manpages at the same time.
# C 2014-2015 Joao Eriberto Mota Filho <eriberto@debian.org>
#
# You can use this code in the same terms of the BSD-3-clause license or,
# optionally, in the same terms of the license used in debian/ directory
# in this Debian package. Please, to the last option, refer the package
# name when using.
#
# This script uses txt2man. You need 2 files: program_name.txt and
# program_name.header.
#
# The program_name.header must be use this structure:
#
# .TH <program_name> "<manpage_level>" "<date>" "<program_name_upper_case> <program_version>" "<program_description>"
#
# Example:
#
# .TH mac-robber "1" "May 2013" "MAC-ROBBER 1.02" "collects data about allocated files in mounted filesystems"
[ ! -f /usr/bin/txt2man ] && echo txt2man not installed. && exit 0
for NAME in $(ls | grep header | cut -d'.' -f1)
do
LEVEL=$(cat $NAME.header | cut -d" " -f3 | tr -d '"')
cat $NAME.header > $NAME.$LEVEL
txt2man $NAME.txt | grep -v '^.TH ' >> $NAME.$LEVEL
done
|