blob: 4ba8c0570647bb8902741baa43ae72105b975991 [file] [log] [blame]
#!/bin/bash
set -e -o pipefail
if [ "$#" -lt 1 ]; then
file="DemoCode"
elif [ "$1" = "-s" ]; then
file="DemoSummary"
else
printf "usage: $(basename $0) [options]\n\n"
printf "Simple command to print the latest test summary file.\n"
printf "\noptions:\n\t--help : Displays this message and exits\n"
printf "\t-f : Tails the summary file and updates as the file is written to.\n\n"
exit 1
fi
tail -F /home/admin/ONS16/DemoCode.txt
exit 0