#!/bin/bash
 
Error=`ldd /usr/bin/AutoScan_Network_Gui| grep "not found" | cut -d" " -f1`

if [ -z "$Error" ];then
	 /usr/bin/AutoScan_Network_Gui
else
	/usr/bin/AutoScan_Network_Error.sh $Error
fi
