#!/bin/bash
#
# w2util
#
# Helper script to start the W2 Utility in background.
#
# History
# 2010-09-18 hb9xar	Initial version
#

W2UTIL_DIR=/opt/w2utility/
W2UTIL=w2util

cd ${W2UTIL_DIR}
nohup ./${W2UTIL} >/dev/null 2>&1 &

