#!/bin/sh
#
# Queue it up, quickly and quietly
#
# Runs a program in the background and suppresses all output.
# Particularly useful for starting X applications from
# a terminal.
#
# Useage: q some-application some parameters
#     ex: q dillo myfile.html
#
# Written by Armagon, 2007-04-05
#
# You are welcome to use this however you see fit.

$* > /dev/null 2>&1 &

