13 lines
111 B
Plaintext
Raw Normal View History

2024-06-02 14:02:06 +03:00
#!/bin/bash
# Prints out the time
PREFIX=' '
get_time()
{
echo "$PREFIX$(date '+%H:%M')"
}
get_time