11 lines
293 B
Bash
Executable File
11 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [[ -n "${1}" ]]; then
|
|
dir="$(dirname ${0})"
|
|
cp -vf ${dir}/whyblocked.1.adoc .
|
|
sed -Ei "s/(Revision: +)[0-9]+\.[0-9]\.[0-9]/\1${1}/" whyblocked.1.adoc
|
|
a2x --doctype manpage --format manpage --no-xmllint whyblocked.1.adoc
|
|
else
|
|
echo "usage: ${0} VERSION" >&2
|
|
fi
|