13 lines
106 B
Plaintext
Raw Permalink Normal View History

2024-06-02 14:02:06 +03:00
#!/bin/bash
# Prints out the date
PREFIX=''
get_day()
{
echo "$PREFIX $(date '+%a')"
}
get_day