mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Base: Add new system-mode that just generates manpages
This commit is contained in:
parent
70c7861c33
commit
2caad04d23
Notes:
sideshowbarker
2024-07-18 01:38:27 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/2caad04d231 Pull-request: https://github.com/SerenityOS/serenity/pull/10655 Reviewed-by: https://github.com/linusg
3 changed files with 63 additions and 2 deletions
|
@ -160,6 +160,14 @@ User=anon
|
|||
WorkingDirectory=/home/anon
|
||||
SystemModes=self-test
|
||||
|
||||
[GenerateManpages@ttyS0]
|
||||
Executable=/root/generate_manpages.sh
|
||||
StdIO=/dev/ttyS0
|
||||
Environment=DO_SHUTDOWN_AFTER_GENERATE=1 TERM=xterm PATH=/bin
|
||||
User=root
|
||||
WorkingDirectory=/root/
|
||||
SystemModes=generate-manpages
|
||||
|
||||
[SpiceAgent]
|
||||
KeepAlive=0
|
||||
|
||||
|
|
52
Base/root/generate_manpages.sh
Executable file
52
Base/root/generate_manpages.sh
Executable file
|
@ -0,0 +1,52 @@
|
|||
#!/bin/Shell
|
||||
|
||||
export ARGSPARSER_EMIT_MARKDOWN=1
|
||||
|
||||
# Qemu likes to start us in the middle of a line, so:
|
||||
echo
|
||||
|
||||
rm -rf generated_manpages || exit 1
|
||||
|
||||
for i in ( \
|
||||
(Eyes 1) \
|
||||
(UserspaceEmulator 1) \
|
||||
(TelnetServer 1) \
|
||||
(WebServer 1) \
|
||||
(config 1) \
|
||||
(fortune 1) \
|
||||
(grep 1) \
|
||||
(gunzip 1) \
|
||||
(gzip 1) \
|
||||
(ifconfig 1) \
|
||||
(lsof 1) \
|
||||
(nc 1) \
|
||||
(netstat 1) \
|
||||
(nl 1) \
|
||||
(ntpquery 1) \
|
||||
(passwd 1) \
|
||||
(profile 1) \
|
||||
(readelf 1) \
|
||||
(shot 1) \
|
||||
(sql 1) \
|
||||
(strace 1) \
|
||||
(tail 1) \
|
||||
(tr 1) \
|
||||
(traceroute 1) \
|
||||
(tree 1) \
|
||||
(truncate 1) \
|
||||
(usermod 8) \
|
||||
(utmpupdate 1) \
|
||||
(wc 1) \
|
||||
) {
|
||||
filename="generated_manpages/man$i[1]/$i[0].md"
|
||||
mkdir -p "generated_manpages/man$i[1]"
|
||||
echo "Generating for $i[0] in $filename ..."
|
||||
$i[0] --help > "$filename" || exit 1
|
||||
echo -e "\n<!-- Auto-generated through ArgsParser -->" >> "$filename" || exit 1
|
||||
}
|
||||
|
||||
echo "Successful."
|
||||
|
||||
if test $DO_SHUTDOWN_AFTER_GENERATE {
|
||||
shutdown -n
|
||||
}
|
|
@ -11,12 +11,13 @@ if [ "$#" -eq "0" ]; then
|
|||
'*.sh' \
|
||||
':!:Ports' \
|
||||
':!:Userland/Shell/Tests' \
|
||||
':!:Base/home/anon/tests'
|
||||
':!:Base/home/anon/tests' \
|
||||
':!:Base/root/generate_manpages.sh'
|
||||
)
|
||||
else
|
||||
files=()
|
||||
for file in "$@"; do
|
||||
if [[ "${file}" == *".sh" ]]; then
|
||||
if [[ "${file}" == *".sh" && "${file}" != "Base/root/generate_manpages.sh" ]]; then
|
||||
files+=("${file}")
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue