13 lines
106 B
Bash
Executable File
13 lines
106 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Prints out the date
|
|
|
|
PREFIX=''
|
|
|
|
get_day()
|
|
{
|
|
echo "$PREFIX $(date '+%a')"
|
|
}
|
|
|
|
get_day
|