
Usage launch [opt] <command> [parameters]

Launch just returns control to the terminal immediately after 
starting an app.  Useful for launching one or more other 
applications while retaining ability to use the terminal.

Options for launch must preceed the command and it's arguments.

Recognized optiions are:
  --help          this display
  -v              version
  -a              allow commandline feedback from the launched app.

This app may be a bit overkill.  The bash equivalent (minus the
switches is:

  #!/bin/sh
  bash $NO_HUP -c $@; exit 0

However, this app might be more conducive to expansion to a Windows
'start'-like application.

