#!/bin/bash

# This line will be automatically uncommented when you "make install"

CMD="beagle-info"
while true; do
    clear
    echo -n "beagle-status at "
    date
    $CMD --status
    sleep 5
done

