diff options
Diffstat (limited to 'hack/man-page-checker')
-rwxr-xr-x | hack/man-page-checker | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hack/man-page-checker b/hack/man-page-checker index 8e9b5a50d..ab1921b86 100755 --- a/hack/man-page-checker +++ b/hack/man-page-checker @@ -39,8 +39,9 @@ done # Pass 2: compare descriptions. # # Make sure the descriptive text in podman-foo.1.md matches the one -# in the table in podman.1.md. -for md in *.1.md;do +# in the table in podman.1.md. podman-remote is not a podman subcommand, +# so it is excluded here. +for md in $(ls -1 *-*.1.md | grep -v remote);do desc=$(egrep -A1 '^#* NAME' $md|tail -1|sed -e 's/^podman[^ ]\+ - //') # podman.1.md has a two-column table; podman-*.1.md all have three. |