Files
godOfGit/watch
Joe Tretter e74a1d3564 add Level 6
2020-09-12 11:27:29 -05:00

10 lines
208 B
Bash
Executable File

#!/bin/bash
while [ 1 == 1 ]
do
$1 > /tmp/watch-$$.tmp
clear
echo -e "\e[5;49;90m------------------------| \e[1;42m$(date)\e[5;49;90m |-----------------------\e[1;0m"
cat /tmp/watch-$$.tmp
sleep 1
done