blob: 4ba8c0570647bb8902741baa43ae72105b975991 [file] [log] [blame]
Jon Hallef822822016-02-19 10:36:47 -08001#!/bin/bash
2
3set -e -o pipefail
4
5if [ "$#" -lt 1 ]; then
6 file="DemoCode"
7elif [ "$1" = "-s" ]; then
8 file="DemoSummary"
9else
10 printf "usage: $(basename $0) [options]\n\n"
11 printf "Simple command to print the latest test summary file.\n"
12 printf "\noptions:\n\t--help : Displays this message and exits\n"
13 printf "\t-f : Tails the summary file and updates as the file is written to.\n\n"
14 exit 1
15fi
Jon Hallf9572352016-03-09 10:21:18 -080016tail -F /home/admin/ONS16/DemoCode.txt
Jon Hallef822822016-02-19 10:36:47 -080017exit 0