summaryrefslogtreecommitdiffstats
path: root/tools/oneliners
diff options
context:
space:
mode:
Diffstat (limited to 'tools/oneliners')
-rw-r--r--tools/oneliners6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/oneliners b/tools/oneliners
new file mode 100644
index 0000000..19d96a7
--- /dev/null
+++ b/tools/oneliners
@@ -0,0 +1,6 @@
1perl -ne '(m/AC_DEFINE(_UNQUOTED)?\(([^,]+)/) && print "$2\n";' configure.in | sort | uniq > DEFS
2perl -ne '(m/^.undef (.*)$/) && print "$1\n";' plugins/config.h.in | sort | uniq | diff - DEFS | grep '>'
3for f in plugins/check_*; do if test -x $f ; then ./$f --help > /dev/null; if [ $? -gt 0 ]; then echo $f failed; fi; fi; done
4for f in plugins/check_*; do if test -x $f ; then ./$f --version > /dev/null; if [ $? -gt 0 ]; then echo $f failed; fi; fi; done
5for f in check_*; do if test -x $f ; then ./$f --help > /dev/null; if [ $? -gt 0 ]; then echo $f failed; fi; fi; done
6for f in check_*; do if test -x $f ; then ./$f --version > /dev/null; if [ $? -gt 0 ]; then echo $f failed; fi; fi; done