mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
4fb334113b
I have no idea how this one slipped through.
17 lines
387 B
Bash
Executable File
17 lines
387 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Use: $0 page-name (with no section suffix)"
|
|
exit 1
|
|
fi
|
|
|
|
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"
|
|
exec man "@BUILD_ROOT@/$target"
|