#!/bin/sh # # mmd --- MultiMarkdown convenience script # # Fletcher T. Penney # # Pass arguments on to the binary to convert text to XHTML # # Be sure to include multimarkdown in our PATH export PATH="/usr/local/bin:$PATH" if [ $# = 0 ] then multimarkdown -c else until [ "$*" = "" ] do multimarkdown -c -b "$1" shift done fi