From a26dfe5edcb02eaf801d0e629eaee8a49a764e6e Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 25 Feb 2021 07:39:26 -0500 Subject: make entry script --- zachusfm.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 zachusfm.py (limited to 'zachusfm.py') diff --git a/zachusfm.py b/zachusfm.py new file mode 100755 index 0000000..b3f942e --- /dev/null +++ b/zachusfm.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 +import sys + +def main(argv): + """Read usfm from stdin, output to stdout in specified format + ./zachusfm md out.md + """ + print('') + +if __name__ == '__main__': + main(sys.argv) -- cgit 1.4.1