#1	Q:	GPC segfaults when I enter a directory with unix ~/ extension in it?
	A:	Right, don't do that.

#2	Q:	If I use mozilla under linux, an error like{
		Usage: apprunner <url>
			<url>:  a fully defined url string like http:// etc..
		}
		occurs.  The problem is that the exec command does not strip
		out ' &' from the end of the string.  And, mozilla tried to
		interpret it.  Create a script to run mozilla like /usr/bin/moz{
		#!/bin/sh

		/usr/bin/mozilla $1 &
		}

