mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
30 lines
400 B
Bash
30 lines
400 B
Bash
#!/usr/bin/env bash
|
|
|
|
case $1 in
|
|
"--hour")
|
|
date "+%I"
|
|
;;
|
|
"--minutes")
|
|
date "+%M"
|
|
;;
|
|
"--type")
|
|
date "+%p"
|
|
;;
|
|
"--date")
|
|
date "+ %a, %b %d"
|
|
;;
|
|
"--day")
|
|
date "+%d"
|
|
;;
|
|
"--month")
|
|
$(( `date "+%m"` -1 ))
|
|
;;
|
|
"--year")
|
|
date "+%y"
|
|
;;
|
|
*)
|
|
true
|
|
;;
|
|
esac
|
|
|