123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #!/bin/Shell
- export ARGSPARSER_EMIT_MARKDOWN=1
- # Qemu likes to start us in the middle of a line, so:
- echo
- ERROR_FILE="generate_manpages_error.log"
- rm -f "$ERROR_FILE"
- exit_for_error()
- {
- if test $DO_SHUTDOWN_AFTER_GENERATE {
- touch "$ERROR_FILE" # Ensure it exists, in case there wasn't any stderr output.
- shutdown -n
- } else {
- exit 1
- }
- }
- rm -rf generated_manpages 2> "$ERROR_FILE" || exit_for_error
- # FIXME: Add `UserspaceEmulator 1` back to this list after UE is functional on x86_64.
- for i in ( \
- (config 1) \
- (fortune 1) \
- (grep 1) \
- (nc 1) \
- (nl 1) \
- (passwd 1) \
- (readelf 1) \
- (shot 1) \
- (sql 1) \
- (strace 1) \
- (tr 1) \
- (traceroute 1) \
- (truncate 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" 2> "$ERROR_FILE" || exit_for_error
- echo -e "\n<!-- Auto-generated through ArgsParser -->" >> "$filename" 2> "$ERROR_FILE" || exit_for_error
- }
- rm -f "$ERROR_FILE"
- echo "Successful."
- if test $DO_SHUTDOWN_AFTER_GENERATE {
- shutdown -n
- }
|