mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
e3c368f63c
Same justification as for update-dbus-docs.
29 lines
714 B
Bash
Executable File
29 lines
714 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Use: $0 page-name (with no section suffix)"
|
|
exit 1
|
|
fi
|
|
|
|
# make sure the rules have been regenerated (in case update-man-rules was just run)
|
|
ninja -C "@BUILD_ROOT@" version.h
|
|
|
|
page="$(echo "$1" | sed 's/\./\\./')"
|
|
target=$(ninja -C "@BUILD_ROOT@" -t query man/man | grep -E -m1 "man/$page\.[0-9]$" | awk '{print $2}')
|
|
if [ -z "$target" ]; then
|
|
echo "Cannot find page $1"
|
|
exit 1
|
|
fi
|
|
ninja -C "@BUILD_ROOT@" "$target"
|
|
|
|
fullname="@BUILD_ROOT@/$target"
|
|
redirect="$(sed -n -r '1 s|^\.so man[0-9]/(.*)|\1|p' "$fullname")"
|
|
if [ -n "$redirect" ]; then
|
|
ninja -C "@BUILD_ROOT@" "man/$redirect"
|
|
|
|
fullname="@BUILD_ROOT@/man/$redirect"
|
|
fi
|
|
|
|
exec man "$fullname"
|