view scripts/list-all-switches @ 235:e58400695ae2

Added tag final version for changeset 348b92755bef
author markus schnalke <meillo@marmaro.de>
date Mon, 16 Jul 2012 11:25:04 +0200
parents eba3744fb238
children
line wrap: on
line source

#!/bin/sh
#
# List (approximately) all documented switches of all mmh programs.
# Based on the man pages.

for i in "$@" ; do
        echo
        echo $i
        sed '/^\.ad/q' $i | grep 'B.*\\-'|sort
done