mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:22:43 +00:00 
			
		
		
		
	 d3eb4f7a41
			
		
	
	
		d3eb4f7a41
		
	
	
	
	
		
			
			This is used during CI to verify that some manual pages are up to date with the output of the corresponding program's --help option. UE does not exist on x86_64 yet, so we cannot run `UE --help`. Remove it from this list for now.
		
			
				
	
	
		
			59 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/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) \
 | |
|             (gunzip 1) \
 | |
|             (gzip 1) \
 | |
|             (ifconfig 1) \
 | |
|             (lsof 1) \
 | |
|             (nc 1) \
 | |
|             (netstat 1) \
 | |
|             (nl 1) \
 | |
|             (ntpquery 1) \
 | |
|             (passwd 1) \
 | |
|             (readelf 1) \
 | |
|             (shot 1) \
 | |
|             (sql 1) \
 | |
|             (strace 1) \
 | |
|             (tr 1) \
 | |
|             (traceroute 1) \
 | |
|             (tree 1) \
 | |
|             (truncate 1) \
 | |
|             (utmpupdate 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
 | |
| }
 |