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

P3UTIL_DIR=/opt/p3utility/
P3UTIL=p3util

cd ${P3UTIL_DIR}
nohup ./${P3UTIL} >/dev/null 2>&1 &

