#!/bin/sh
for i in `ps ax|grep autostart.sh |awk -F" " '{print $1}'` ; do
   kill -9 $i
done
kill -9 `pidof xbmc.bin`
