mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:05:39 +08:00
0a4b983afa
darcs-hash:20051010161255-ac50b-e732f18c1dfa610e34b56bb4ff1a3d4d2ef078a1.gz
13 lines
393 B
Bash
Executable File
13 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This little script calls the man command to render a manual page and
|
|
# pipes the result into the gen_hdr2 program to convert the output
|
|
# into a C string literal.
|
|
|
|
# NAME is the name of the function we are generating documentation for.
|
|
NAME=`basename $1 .doxygen`
|
|
|
|
# Render the page
|
|
nroff -man doc_src/builtin_doc/man/man1/${NAME}.1 | col -b | cat -s | sed -e '$d' | ./gen_hdr2
|
|
|