#!/bin/bash source $(dirname $0)/conf-client/service.cfg if [[ -z $(ps axf| grep pyhton | grep ${WebPort}) ]] then bash ./conf-client/webserver.sh ${WebPort} & fi while true do ./conf-client/exec.sh sleep $Rotation done