#!/bin/sh
case $1 in 
	"scan")
	
		echo "scanning now ....";

		/opt/bdc/bdc /
		;;
		
	
	"update")
		echo "Updating....";

		/opt/bdc/bdc --update;
		
		;;
		

esac