Guest User

Untitled

a guest
Nov 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/bin/sh
  2. if [ "$1" = "" ]
  3. then
  4. echo "Usage: $0 path/to/filename.markdown"
  5. exit
  6. fi
  7. tmpfile=`mktemp -t ronn`
  8. /usr/local/lib/ruby/gems/1.9.1/gems/ronn-0.7.3/bin/ronn -r --pipe $1 > $tmpfile
  9. man $tmpfile
Add Comment
Please, Sign In to add comment