9 lines
90 B
Bash
9 lines
90 B
Bash
|
#!/bin/bash
|
||
|
while true
|
||
|
do
|
||
|
date +%H:%M:%S
|
||
|
echo "CTRL+C to stop"
|
||
|
sleep 1
|
||
|
clear
|
||
|
done
|