
#!/bin/sh
# File	: sent_wol.sh
# By	: MaartenDeBoer.nl, 230121
# Subject	: Script to sent a WakeOnLAN for a host
PGM=`basename $0|cut -d\. -f1`
VER="0.1"


# ASUS ; mentrix
MAC_ADDR="10:bf:48:2d:62:fc"

echo "`date` ${PGM} v${VER} for MAC: ${MAC_ADDR}"

/usr/bin/wakeonlan ${MAC_ADDR}


exit 0

