Text::Markdown::Discount
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
276 B

  1. #! /bin/sh
  2. trap "rm -f in.markdown.h in.mkdio.h" EXIT
  3. grep '#define MKD_' markdown.h | awk '$3 ~ /0x0/ {print $2,$3;}' > in.markdown.h
  4. grep '#define MKD_' mkdio.h | awk '$3 ~ /0x0/ {print $2,$3;}' > in.mkdio.h
  5. diff -c -bw in.markdown.h in.mkdio.h
  6. retcode=$?
  7. exit $retcode