File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / mtr / build-aux / mangen.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 21 14:25:31 2019 UTC (4 years, 9 months ago) by misho
Branches: mtr, MAIN
CVS tags: v0_92, HEAD
mtr ver 0.92

#!/bin/sh

#
#  Generate the man pages.
#
#  We are just here to substitute the @VERSION@ string with our real version.
#

if [ $# -lt 3 ]; then
    echo Usage: mangen.sh VERSION IN OUT
    exit 1
fi

sed -e "s|@VERSION[@]|$1|g" $2 >$3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>