On Mac OSX, I can use the pre-installed textutil command to convert RTF-to-HTML, and then convert through pandoc to markdown. So the command line that takes RTF from stdin and writes markdown to stdout looks like this:
textutil -stdin -convert html -stdout | pandoc --from=html --to=markdown
source share