From 02f14a9cb152561a5e44062aac79f3b700403b40 Mon Sep 17 00:00:00 2001 From: navewindre Date: Sun, 13 Jul 2025 06:42:05 +0200 Subject: omz --- home/.oh-my-zsh/plugins/isodate/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 home/.oh-my-zsh/plugins/isodate/README.md (limited to 'home/.oh-my-zsh/plugins/isodate/README.md') diff --git a/home/.oh-my-zsh/plugins/isodate/README.md b/home/.oh-my-zsh/plugins/isodate/README.md new file mode 100644 index 0000000..5329310 --- /dev/null +++ b/home/.oh-my-zsh/plugins/isodate/README.md @@ -0,0 +1,22 @@ +# Isodate plugin + +This plugin adds completion for the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), +as well as some aliases for common Date commands. + +To use it, add `isodate` to the plugins array in your zshrc file: + +```zsh +plugins=(... isodate) +``` + +**Maintainer:** [@Frani](https://github.com/frani) + +## Aliases + +| Alias | Command | Description | +|---------------|--------------------------------------|----------------------------------------------------------------------------| +| isodate | `date +%Y-%m-%dT%H:%M:%S%z` | Display the current date with UTC offset and ISO 8601-2 extended format | +| isodate_utc | `date -u +%Y-%m-%dT%H:%M:%SZ` | Display the current date in UTC and ISO 8601-2 extended format | +| isodate_basic | `date -u +%Y%m%dT%H%M%SZ` | Display the current date in UTC and ISO 8601 basic format | +| unixstamp | `date +%s` | Display the current date as a Unix timestamp (seconds since the Unix epoch)| +| date_locale | `date +"%c"` | Display the current date using the default locale's format | -- cgit v1.2.3