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