mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-06 17:38:45 +00:00
14 lines
232 B
Bash
Executable File
14 lines
232 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
DaySuffix() {
|
|
case `date +%-d` in
|
|
1|21|31) echo "st";;
|
|
2|22) echo "nd";;
|
|
3|23) echo "rd";;
|
|
*) echo "th";;
|
|
esac
|
|
}
|
|
|
|
date=$(date "+%a, %b %-d`DaySuffix` · %H:%M")
|
|
printf "%s" "$date"
|