7 lines
79 B
Bash
Executable File
7 lines
79 B
Bash
Executable File
# Prints the name of the current day.
|
|
|
|
run_segment() {
|
|
date +"%a"
|
|
return 0
|
|
}
|