mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 06:25:37 +03:00
13 lines
200 B
Plaintext
13 lines
200 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Use: $0 page-name (with no section suffix)"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
target="man/$1.html"
|
||
|
ninja -C "@BUILD_ROOT@" "$target"
|
||
|
set -x
|
||
|
exec xdg-open build/"$target"
|