MultiMarkdown-6/scripts/mmd2odf

30 lines
507 B
Bash
Executable File

#!/bin/sh
#
# mmd2odf --- MultiMarkdown convenience script
# <http://fletcherpenney.net/multimarkdown/>
# Fletcher T. Penney
#
# Pass arguments on to the binary to convert text to OpenDocument
#
# Be sure to include multimarkdown in our PATH
export PATH="$PWD:/usr/local/bin:$PATH"
which multimarkdown > /dev/null
if [ $? = 1 ]
then
echo multimarkdown executable not found! >&2
exit 1
fi
if [ $# = 0 ]
then
multimarkdown -t odf
else
until [ "$*" = "" ]
do
multimarkdown -b -t odf "$1"
shift
done
fi