Annotation of embedaddon/mtr/build-aux/mangen.sh, revision 1.1

1.1     ! misho       1: #!/bin/sh
        !             2: 
        !             3: #
        !             4: #  Generate the man pages.
        !             5: #
        !             6: #  We are just here to substitute the @VERSION@ string with our real version.
        !             7: #
        !             8: 
        !             9: if [ $# -lt 3 ]; then
        !            10:     echo Usage: mangen.sh VERSION IN OUT
        !            11:     exit 1
        !            12: fi
        !            13: 
        !            14: sed -e "s|@VERSION[@]|$1|g" $2 >$3

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