<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: One Small Step For A Man Page</title>
	<atom:link href="http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page/feed" rel="self" type="application/rss+xml" />
	<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page</link>
	<description>Mac &#38; Technology Writings by Daniel Jalkut</description>
	<pubDate>Sat, 30 Aug 2008 08:44:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Scott Stevenson</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-36108</link>
		<dc:creator>Scott Stevenson</dc:creator>
		<pubDate>Thu, 21 Dec 2006 14:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-36108</guid>
		<description>Perhaps slightly off topic, but I just noticed that Bruji is a gold sponsor for &lt;a href="http://www.childsplaycharity.org/" rel="nofollow"&gt;Child's Play&lt;/a&gt;, alongside ATI, Konami, Firefox, and Ubisoft. I'm thinking that's more than a small amount of money.

For comparison, Blizzard and THQ are in Silver, which is one level down. I don't mean that it's competitve, just that Bruji is not only a sponsor, but apparently did a lot more than the minimum. Not bad for a indie Mac developer.

Delicious Monster is a Platinum sponsor, alongside Dell and Sony.</description>
		<content:encoded><![CDATA[<p>Perhaps slightly off topic, but I just noticed that Bruji is a gold sponsor for <a href="http://www.childsplaycharity.org/" rel="nofollow">Child&#8217;s Play</a>, alongside ATI, Konami, Firefox, and Ubisoft. I&#8217;m thinking that&#8217;s more than a small amount of money.</p>
<p>For comparison, Blizzard and THQ are in Silver, which is one level down. I don&#8217;t mean that it&#8217;s competitve, just that Bruji is not only a sponsor, but apparently did a lot more than the minimum. Not bad for a indie Mac developer.</p>
<p>Delicious Monster is a Platinum sponsor, alongside Dell and Sony.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelan</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-35166</link>
		<dc:creator>Kelan</dc:creator>
		<pubDate>Tue, 19 Dec 2006 00:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-35166</guid>
		<description>My friend and I came up with a little trick to view man pages as PDFs, so that you can view it with nice formatting, scroll around, search, etc.  Basically, it saves the manpage as a postscript file on your desktop (this could probably be changed to /tmp/ or something) and then opens it with Preview, which converts it from ps to pdf.  You can even then save the resulting file and keep the pdf for later use.  Its pretty hacky, with the sleep step and all, but it works.  I used have have it sleep 10 (seconds) on my old 450G4 tower, but sleep 2 seems to work on my MBP (and Preview reads the whole ps file immediately, so it doesn't have to finish converting the file before this deletes it).  We initially wrote it as a tcsh alias, but recently converted it to a bash function.

Just copy one of the following to your .tcshrc or .profile file (respectively), open a new terminal window, and type "manview curl" (for example).

tcsh:
&lt;code&gt;alias manview 'man -t \!:1 &#62; ~/Desktop/\!:1.ps; open -a Preview.app ~/Desktop/\!:1.ps; sleep 10; rm ~/Desktop/\!:1.ps'&lt;/code&gt;

bash:
&lt;code&gt;manview () { 
     if [ "$#" = "1" ]; then 
          man -t ${1} &#62; ~/Desktop/${1}.ps 
          open -a Preview.app ~/Desktop/${1}.ps 
          sleep 10
          rm ~/Desktop/${1}.ps 
     fi 
}&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>My friend and I came up with a little trick to view man pages as PDFs, so that you can view it with nice formatting, scroll around, search, etc.  Basically, it saves the manpage as a postscript file on your desktop (this could probably be changed to /tmp/ or something) and then opens it with Preview, which converts it from ps to pdf.  You can even then save the resulting file and keep the pdf for later use.  Its pretty hacky, with the sleep step and all, but it works.  I used have have it sleep 10 (seconds) on my old 450G4 tower, but sleep 2 seems to work on my MBP (and Preview reads the whole ps file immediately, so it doesn&#8217;t have to finish converting the file before this deletes it).  We initially wrote it as a tcsh alias, but recently converted it to a bash function.</p>
<p>Just copy one of the following to your .tcshrc or .profile file (respectively), open a new terminal window, and type &#8220;manview curl&#8221; (for example).</p>
<p>tcsh:<br />
<code>alias manview 'man -t \!:1 &gt; ~/Desktop/\!:1.ps; open -a Preview.app ~/Desktop/\!:1.ps; sleep 10; rm ~/Desktop/\!:1.ps'</code></p>
<p>bash:<br />
<code>manview () {<br />
     if [ "$#" = "1" ]; then<br />
          man -t ${1} &gt; ~/Desktop/${1}.ps<br />
          open -a Preview.app ~/Desktop/${1}.ps<br />
          sleep 10<br />
          rm ~/Desktop/${1}.ps<br />
     fi<br />
}</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alberto Ricart</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34829</link>
		<dc:creator>Alberto Ricart</dc:creator>
		<pubDate>Mon, 18 Dec 2006 00:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34829</guid>
		<description>If you add the following to script.strings, you also get OmniWeb compatibility:

OmniWeb
tell application "OmniWeb"
GetURL "file://%@"
end tell</description>
		<content:encoded><![CDATA[<p>If you add the following to script.strings, you also get OmniWeb compatibility:</p>
<p>OmniWeb<br />
tell application &#8220;OmniWeb&#8221;<br />
GetURL &#8220;file://%@&#8221;<br />
end tell</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Conor</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34637</link>
		<dc:creator>Conor</dc:creator>
		<pubDate>Sun, 17 Dec 2006 09:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34637</guid>
		<description>I am glad you find Bwana useful; thank you for taking the time to make it even more useful. I have included your changes and made it Bwana 2.1. There have been a lot of suggestions for Bwana over the years, but users love the simplicity. I think the most repeated ones are apropos searching and a bezel type display while it builds the HTML for the index or man page.

Nigel: Many users use Quicksilver, LaunchBar or even the command line to trigger Bwana as they prefer the browser display.</description>
		<content:encoded><![CDATA[<p>I am glad you find Bwana useful; thank you for taking the time to make it even more useful. I have included your changes and made it Bwana 2.1. There have been a lot of suggestions for Bwana over the years, but users love the simplicity. I think the most repeated ones are apropos searching and a bezel type display while it builds the HTML for the index or man page.</p>
<p>Nigel: Many users use Quicksilver, LaunchBar or even the command line to trigger Bwana as they prefer the browser display.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nigel Kersten</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34461</link>
		<dc:creator>Nigel Kersten</dc:creator>
		<pubDate>Sat, 16 Dec 2006 20:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34461</guid>
		<description>I've used ManOpen for a while, but don't bother with the commandline tool anymore.

I've bound x-man-page://*** as a Quicksilver shortcut called 'uman', so I just use QS to trigger all man page views.

Looking at BWana now though... using the browser is a nice idea.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used ManOpen for a while, but don&#8217;t bother with the commandline tool anymore.</p>
<p>I&#8217;ve bound x-man-page://*** as a Quicksilver shortcut called &#8216;uman&#8217;, so I just use QS to trigger all man page views.</p>
<p>Looking at BWana now though&#8230; using the browser is a nice idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Walzer</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34450</link>
		<dc:creator>Kevin Walzer</dc:creator>
		<pubDate>Sat, 16 Dec 2006 19:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34450</guid>
		<description>Bwana is certainly an interesting application for viewing man pages. ManOpen is also nice if you prefer a more document-based approach, and for browsing man pages on your system.

Good free apps like this make for tough competition for my own app, VuMan. It's sold a few licenses, but not in the numbers I would have hoped for.</description>
		<content:encoded><![CDATA[<p>Bwana is certainly an interesting application for viewing man pages. ManOpen is also nice if you prefer a more document-based approach, and for browsing man pages on your system.</p>
<p>Good free apps like this make for tough competition for my own app, VuMan. It&#8217;s sold a few licenses, but not in the numbers I would have hoped for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spyro</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34449</link>
		<dc:creator>Spyro</dc:creator>
		<pubDate>Sat, 16 Dec 2006 19:14:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34449</guid>
		<description>Hmmmm I use ManOpen and its usefull openman commande line tool.
Nice how "open man:foo" works with Bwana (like "openman foo" with ManOpen).</description>
		<content:encoded><![CDATA[<p>Hmmmm I use ManOpen and its usefull openman commande line tool.<br />
Nice how &#8220;open man:foo&#8221; works with Bwana (like &#8220;openman foo&#8221; with ManOpen).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens Ayton</title>
		<link>http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34447</link>
		<dc:creator>Jens Ayton</dc:creator>
		<pubDate>Sat, 16 Dec 2006 19:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.red-sweater.com/blog/238/one-small-step-for-a-man-page#comment-34447</guid>
		<description>I used Bwana for a while, but I’ve found Xcode’s Help-&#62;Open man page… more convenient since I tend to have Xcode running all the time too.</description>
		<content:encoded><![CDATA[<p>I used Bwana for a while, but I’ve found Xcode’s Help-&gt;Open man page… more convenient since I tend to have Xcode running all the time too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.252 seconds -->
