#!/bin/sh

# This script is used to launch grub in the background and avoid all
# output

echo "This script only works if grubclient is in your path!"
grubclient 2>&1 > /dev/null &
exit 0

