File: create-man.sh

package info (click to toggle)
xmlrpc-c 1.33.14-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,548 kB
  • sloc: ansic: 52,234; cpp: 12,048; sh: 3,120; makefile: 1,956; perl: 593; xml: 134
file content (18 lines) | stat: -rwxr-xr-x 591 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

# Copyright 2015-2019 Joao Eriberto Mota Filho <eriberto@eriberto.pro.br>
# Create a manpage using txt2man command.
#
# This script can be used under BSD-3-Clause license.

T2M_DATE="19 Jun 2020"
T2M_NAME=xmlrpc
T2M_VERSION=1.33.14
T2M_LEVEL=1
T2M_DESC="xmlrpc Manual"

# Don't change the following lines
TEST=$(txt2man -h 2> /dev/null)
[ "$TEST" ] || { echo -e "\nYou need to install txt2man, from https://github.com/mvertes/txt2man.\n"; exit 1; }

txt2man -d "$T2M_DATE" -t $T2M_NAME -r $T2M_NAME-$T2M_VERSION -s $T2M_LEVEL -v "$T2M_DESC" $T2M_NAME.txt > $T2M_NAME.$T2M_LEVEL