10 Minute Script for Linux and Mac OSX

So today I was cleaning up some of my scripts and found this little gem, a simple script that would send a voice with my callsign out through the speakers, since I own a Signalink the audio output of this would trigger my radio and thus keeping me “part 97 legal”, Its just for kicks nothing special here but others may find it useful, you can edit the script for your makeshift repeater or simply have it transmit while you start a conversation and have it remind you or simply call out your callsign.



#!/bin/bash
# Written by Jose Malave KM4OOD
callsign=KM4OOD
while true
do
# Change the CallSIGN WITH YOUR OWN
say This is $callsign
# 10 Minutes = 600 Seconds
sleep 1
done

Leave a Reply

Your email address will not be published. Required fields are marked *