mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
8 lines
93 B
Bash
Executable file
8 lines
93 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
# Get the month.
|
|
month=$(date +"%b")
|
|
|
|
# Return the month string.
|
|
echo "$month"
|