13 lines
111 B
Plaintext
13 lines
111 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Prints out the time
|
||
|
|
||
|
PREFIX=' '
|
||
|
|
||
|
get_time()
|
||
|
{
|
||
|
echo "$PREFIX$(date '+%H:%M')"
|
||
|
}
|
||
|
|
||
|
get_time
|