mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
8 lines
112 B
Bash
Executable File
8 lines
112 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# Formats the date as '23.10.12'.
|
|
|
|
function shortdate() {
|
|
echo "$(date '+%Y.%m.%d' | cut -c3-)"
|
|
}
|