13 lines
119 B
Bash
Executable File
13 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Prints out the date
|
|
|
|
PREFIX=''
|
|
|
|
get_date()
|
|
{
|
|
echo "$PREFIX $(date '+%d-%m-%y (%a)')"
|
|
}
|
|
|
|
get_date
|