#!/bin/bash
#
# k3util
#
# Helper script to start the K3 Utility in background.
#
# History
# 2008-02-09 hb9xar	Initial version
#

K3UTIL_DIR=/opt/k3utility/
K3UTIL=k3util

cd ${K3UTIL_DIR}
nohup ./${K3UTIL} >/dev/null 2>&1 &

