aboutsummaryrefslogtreecommitdiff
path: root/bin/clrd
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-09 17:15:40 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-09 17:20:10 +1200
commit9fb350dc7c8cc5259ef24e0cb097031179fab1d6 (patch)
tree839dd0b8ee3f5323b1cd6aefa22b605b99437d62 /bin/clrd
parentMention nosls/sls flags in slsf(1) man page (diff)
downloaddotfiles-9fb350dc7c8cc5259ef24e0cb097031179fab1d6.tar.gz
dotfiles-9fb350dc7c8cc5259ef24e0cb097031179fab1d6.zip
Improve commenting/exit handling in binscripts
Diffstat (limited to 'bin/clrd')
-rwxr-xr-xbin/clrd5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/clrd b/bin/clrd
index 0e41d2db..0b460671 100755
--- a/bin/clrd
+++ b/bin/clrd
@@ -1,5 +1,8 @@
#!/bin/sh
+# Clear the screen and read a file as it's written line-by-line
self=clrd
+
+# Check we have an input file and are writing to a terminal
if [ "$#" -ne 1 ] ; then
printf >&2 '%s: Need input file\n' "$self"
exit 2
@@ -7,5 +10,7 @@ elif ! [ -t 1 ] ; then
printf >&2 '%s: stdout not a terminal\n' "$self"
exit 2
fi
+
+# Clear the screen and start tailing out the file
clear
tail -f -- "$@"