Raspberry Pi GOES Start-Up Script:

nano goesrtl.sh    "Paste The Following Code And Save"

#!/bin/bash
sleep 20
cd /home/pi/

goesrecv -v -i 1 -c ~/goesrecv.conf

nano goesrecv.sh   "Paste The Following Code And Save"

#!/bin/bash
sleep 25
cd /home/pi/

goesproc -c /usr/share/goestools/goesproc-goesr.conf -m packet  --subscribe tcp://127.0.0.1:5004

To Make The Scripts Executable:

chmod +x goesrtl.sh
chmod +x goesrecv.sh

Enter The Crontab File:

crontab -e

Now Add The Following Commands To The Bottom And Save:

@reboot /home/pi/goesrtl.sh &
@reboot /home/pi/goesrecv.sh &