X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;ds=sidebyside;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fisodate%2FREADME.md;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fisodate%2FREADME.md;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=1ec75b2d47527773a94940fd267940e7f74fa39d;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/isodate/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/isodate/README.md deleted file mode 100644 index 1ec75b2..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/isodate/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# Isodate plugin - -**Maintainer:** [@Frani](https://github.com/frani) - -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) -``` - -## 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 |