I found this script is running in my system without any knowledge.
#!/bin/sh
if test -r /tmp/.txl/bash.pid; then
pid=$(cat /tmp/.txl/bash.pid)
if $(kill -CHLD $pid >/dev/null 2>&1)
then
sleep 1
else
cd /tmp/.txl
./run &>/dev/null
exit 0
fi
fi
Also this script is being triggered by /tmp/.txl/upd >/dev/null 2>&1
Can anyone explain why this script is running
Any help will be appreciated..!