mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 21:42:08 +02:00

* pages/*: fix small typos * Update ssh-copy-id.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * ansible-inventory: fix typo * Update pages/linux/zathura.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * gcloud: fix typo * fdesetup: mark as placeholder * icalbuddy: use general placeholder * ip: make it a placeholder * git-svn: fix typo * pages/*: fix typos * kubectl-get: add mnemonics and long options * kubectl-describe: add mnemonics and long options * pip-install: use short option * Update icalbuddy.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
608 B
608 B
genid
Generate IDs, such as snowflakes, UUIDs, and a new GAID. More information: https://github.com/bleonard252/genid.
- Generate a UUIDv4:
genid uuid
- Generate a UUIDv5 using a namespace UUID and a specific name:
genid uuidv5 {{ce598faa-8dd0-49ee-8525-9e24fff71dca}} {{name}}
- Generate a Discord Snowflake, without a trailing newline (useful in shell scripts):
genid --script snowflake
- Generate a Generic Anonymous ID with a specific "real ID":
genid gaid {{real_id}}
- Generate a Snowflake with the epoch set to a specific date:
genid snowflake --epoch={{unix_epoch_time}}