test

Any registration / login issues, or anything you want to test can be done so here!

Moderator: CricketMX Forum Moderators

Post Reply
bnbn
Greenhorn
Greenhorn
Posts: 1
Joined: Fri Jan 13, 2006 7:43 pm
Contact:

test
Guest

I cleaned it up just a little. This code will produce the url you need to access, after you swap out the username and password.

Code: Select all

#!/bin/bash
#File name: CmxUptime.sh
UPSECONDS="`cut -f1 -d'.' /proc/uptime`"
let UPDAYS="${UPSECONDS} / 86400"
let UPHOURS="(${UPSECONDS} % 86400) / 3600"
let UPMINUTES="((${UPSECONDS} % 86400) % 3600) / 60"
echo -n "uptime.cricketmx.com/upload.php?"

echo -n "username=nesman64&password=passvord"
if [ "${UPDAYS}" -ne "0" ];
then
    echo -n "&days=${UPDAYS}"
fi
if [ "${UPHOURS}" -ne "0" ];
then
    echo -n "&hours=${UPHOURS}"
fi
echo "&minutes=${UPMINUTES}"
I use the curl program for this, but wget, lynx, w3m, and who knows what else would work as well.

curl `CmxUptime.sh` > /dev/null 2>&1

You could set this as an entry in cron to have it run whenever.

47 * * * * /usr/bin/curl `/home/nesman/bin/CmxUptime.sh` > /dev/null 2>&1
Post Reply