Skip to content

Instantly share code, notes, and snippets.

@Twipped
Created February 20, 2013 18:54
Show Gist options
  • Save Twipped/4998053 to your computer and use it in GitHub Desktop.
Save Twipped/4998053 to your computer and use it in GitHub Desktop.
Opens the passed manpage as a pdf in Preview. Invoked as `manview <command>`
#!/bin/sh
man -t $1 > /tmp/$1.ps
open -a "/Applications/Preview.app" /tmp/$1.ps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment