diff --git a/tldr/chainctl b/tldr/chainctl index 2c29b42e..83674c8a 100644 --- a/tldr/chainctl +++ b/tldr/chainctl @@ -16,10 +16,6 @@ source: https://github.com/tldr-pages/tldr.git `chainctl auth logout` -- Check which version you have installed: - -`chainctl version` - - Update to the latest version: `chainctl update` @@ -39,3 +35,7 @@ source: https://github.com/tldr-pages/tldr.git - List package version data from repositories available to your account (e.g., package_name=go): `chainctl packages versions list {{package_name}}` + +- Display version: + +`chainctl version` diff --git a/tldr/django-admin b/tldr/django-admin index 34e48adf..a72344e8 100644 --- a/tldr/django-admin +++ b/tldr/django-admin @@ -16,10 +16,10 @@ source: https://github.com/tldr-pages/tldr.git `django-admin startapp {{app_name}}` -- Check the current version of Django: - -`django-admin --version` - - Display help for a specific command: `django-admin help {{command}}` + +- Display version: + +`django-admin --version` diff --git a/tldr/fastd b/tldr/fastd index 09f8ff56..ece665f5 100644 --- a/tldr/fastd +++ b/tldr/fastd @@ -30,6 +30,6 @@ source: https://github.com/tldr-pages/tldr.git `fastd --show-key {{[-c|--config]}} {{path/to/fastd.conf}}` -- Show the current version: +- Display version: `fastd {{[-v|--version]}}` diff --git a/tldr/hg b/tldr/hg index 9d6f96ec..054cfb9b 100644 --- a/tldr/hg +++ b/tldr/hg @@ -21,6 +21,6 @@ source: https://github.com/tldr-pages/tldr.git `hg help {{command}}` -- Check the Mercurial version: +- Display version: `hg --version` diff --git a/tldr/lilypond b/tldr/lilypond index 1800e4c0..778c8033 100644 --- a/tldr/lilypond +++ b/tldr/lilypond @@ -25,6 +25,6 @@ source: https://github.com/tldr-pages/tldr.git `lilypond {{[-o|--output]}} {{path/to/output_file}} {{path/to/input_file}}` -- Show the current version of lilypond: +- Display version: `lilypond {{[-v|--version]}}` diff --git a/tldr/linux/vlock b/tldr/linux/vlock index b4dc468b..e6252496 100644 --- a/tldr/linux/vlock +++ b/tldr/linux/vlock @@ -20,10 +20,10 @@ source: https://github.com/tldr-pages/tldr.git `vlock {{[-a|--all]}}` -- Show help: +- Display help: `vlock {{[-h|--help]}}` -- Show version: +- Display version: `vlock {{[-v|--version]}}` diff --git a/tldr/npm-version b/tldr/npm-version index 2322a569..e9cfa2d9 100644 --- a/tldr/npm-version +++ b/tldr/npm-version @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Bump a node package version. > More information: . -- Check current version: +- Display version: `npm version` diff --git a/tldr/puppet b/tldr/puppet index 6cc8acad..c1a220e1 100644 --- a/tldr/puppet +++ b/tldr/puppet @@ -13,10 +13,6 @@ source: https://github.com/tldr-pages/tldr.git `puppet {{subcommand}}` -- Check the Puppet version: - -`puppet --version` - - Display help: `puppet --help` @@ -24,3 +20,7 @@ source: https://github.com/tldr-pages/tldr.git - Display help for a subcommand: `puppet help {{subcommand}}` + +- Display version: + +`puppet --version` diff --git a/tldr/rails b/tldr/rails index 2abb5f77..17ce4226 100644 --- a/tldr/rails +++ b/tldr/rails @@ -37,6 +37,6 @@ source: https://github.com/tldr-pages/tldr.git `rails console` -- Check current version of rails: +- Display version: `rails {{[-v|--version]}}` diff --git a/tldr/split b/tldr/split index e5654e39..ba59b2c2 100644 --- a/tldr/split +++ b/tldr/split @@ -23,3 +23,7 @@ source: https://github.com/tldr-pages/tldr.git - Split a file with at most 512 bytes in each split without breaking lines: `split {{[-C|--line-bytes]}} 512 {{path/to/file}}` + +- Split into multiple files from `stdin`: + +`gzip {{[-cd|--stdout --decompress]}} {{path/to/compressed_file.gz}} | split {{[-l|--lines]}} 1000 - {{path/to/output}}`