docs/master

annotate scripts/list-all-switches-code @ 234:eba3744fb238

Added my set of helper scripts. Removes the spell makefile target as it was not use{d,ful} anyway. Btw: I should have ran script/doubles before I printed the document. :-/
author markus schnalke <meillo@marmaro.de>
date Mon, 16 Jul 2012 11:23:30 +0200
parents
children
rev   line source
meillo@234 1 #!/bin/sh
meillo@234 2 #
meillo@234 3 # List all switches of all mmh programs.
meillo@234 4 # Based on the source code.
meillo@234 5
meillo@234 6 for i in "$@" ; do
meillo@234 7 echo "$i"
meillo@234 8 sed -n '/^#define/d;/struct swit [a-z]*switches\[\]/,/^};/p' "$i"
meillo@234 9 echo
meillo@234 10 done