Initial commit

This commit is contained in:
Isaac Shoebottom 2023-02-06 09:57:29 -04:00
commit b7feee6c25

8
time.sh Executable file
View File

@ -0,0 +1,8 @@
#/bin/bash
trap ctrl_c EXIT
function ctrl_c() {
clear
}
while sleep 1; do clear; date; done