diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-11-05 18:17:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-11-05 18:17:17 +0000 |
commit | 0e75b5495117b9888b7a557fab1db40145a9a705 (patch) | |
tree | e294b5156b7a85197e4b3192b6fba291a26dd5c6 /doc/list-man-pages.sh | |
parent | Adding upstream version 1.1. (diff) | |
download | libnvme-0e75b5495117b9888b7a557fab1db40145a9a705.tar.xz libnvme-0e75b5495117b9888b7a557fab1db40145a9a705.zip |
Adding upstream version 1.2.upstream/1.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/list-man-pages.sh')
-rwxr-xr-x | doc/list-man-pages.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/list-man-pages.sh b/doc/list-man-pages.sh index e22691d..3acdf7a 100755 --- a/doc/list-man-pages.sh +++ b/doc/list-man-pages.sh @@ -3,14 +3,14 @@ file=$1 -for func in $(sed -n 's/ \* \([a-z_]*\)() -.*/\1/p' $file); do +for func in $(sed -n 's/ \* \([a-z_][a-z_0-9]*\)() -.*/\1/p' $file); do echo ${func} done -for struct in $(sed -n 's/ \* struct \([a-z_]*\) -.*/\1/p' $file); do +for struct in $(sed -n 's/ \* struct \([a-z_][a-z_0-9]*\) -.*/\1/p' $file); do echo ${struct} done -for enum in $(sed -n 's/ \* enum \([a-z_]*\) -.*/\1/p' $file); do +for enum in $(sed -n 's/ \* enum \([a-z_][a-z_0-9]*\) -.*/\1/p' $file); do echo ${enum} done |