diff --git a/tldr/2to3 b/tldr/2to3 index 1aa314e6..2893b024 100644 --- a/tldr/2to3 +++ b/tldr/2to3 @@ -18,11 +18,11 @@ source: https://github.com/tldr-pages/tldr.git - Convert specific Python 2 language features to Python 3: -`2to3 --write {{path/to/file.py}} --fix={{raw_input}} --fix={{print}}` +`2to3 --write {{path/to/file.py}} --fix {{raw_input}} --fix {{print}}` - Convert all Python 2 language features except the specified ones to Python 3: -`2to3 --write {{path/to/file.py}} --nofix={{has_key}} --nofix={{isinstance}}` +`2to3 --write {{path/to/file.py}} --nofix {{has_key}} --nofix {{isinstance}}` - List all available language features that can be converted from Python 2 to Python 3: @@ -30,8 +30,8 @@ source: https://github.com/tldr-pages/tldr.git - Convert all Python 2 files in a directory to Python 3: -`2to3 --output-dir={{path/to/python3_directory}} --write-unchanged-files --nobackups {{path/to/python2_directory}}` +`2to3 --output-dir {{path/to/python3_directory}} --write-unchanged-files --nobackups {{path/to/python2_directory}}` - Run 2to3 with multiple threads: -`2to3 --processes={{4}} --output-dir={{path/to/python3_directory}} --write --nobackups --no-diff {{path/to/python2_directory}}` +`2to3 --processes {{4}} --output-dir {{path/to/python3_directory}} --write --nobackups --no-diff {{path/to/python2_directory}}` diff --git a/tldr/ack b/tldr/ack index f13d829d..cd0c5cd7 100644 --- a/tldr/ack +++ b/tldr/ack @@ -23,11 +23,11 @@ source: https://github.com/tldr-pages/tldr.git - Limit search to files of a specific type: -`ack --type={{ruby}} "{{search_pattern}}"` +`ack --type {{ruby}} "{{search_pattern}}"` - Do not search in files of a specific type: -`ack --type=no{{ruby}} "{{search_pattern}}"` +`ack --type no{{ruby}} "{{search_pattern}}"` - Count the total number of matches found: diff --git a/tldr/adb-logcat b/tldr/adb-logcat index 5efb690d..8aa99f81 100644 --- a/tldr/adb-logcat +++ b/tldr/adb-logcat @@ -30,11 +30,11 @@ source: https://github.com/tldr-pages/tldr.git - Display logs for a specific PID: -`adb logcat --pid={{pid}}` +`adb logcat --pid {{pid}}` - Display logs for the process of a specific package: -`adb logcat --pid=$(adb shell pidof -s {{package}})` +`adb logcat --pid $(adb shell pidof -s {{package}})` - Color the log (usually use with filters): diff --git a/tldr/alias b/tldr/alias index 79272c1d..b69b89e3 100644 --- a/tldr/alias +++ b/tldr/alias @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # alias -> Creates aliases -- words that are replaced by a command string. +> Create aliases - words that are replaced by a command string. > Aliases expire with the current shell session unless defined in the shell's configuration file, e.g. `~/.bashrc`. > More information: . diff --git a/tldr/android/logcat b/tldr/android/logcat index 820c3afe..3ebcd61f 100644 --- a/tldr/android/logcat +++ b/tldr/android/logcat @@ -22,8 +22,8 @@ source: https://github.com/tldr-pages/tldr.git - Display logs for a specific PID: -`logcat --pid={{pid}}` +`logcat --pid {{pid}}` - Display logs for the process of a specific package: -`logcat --pid=$(pidof -s {{package}})` +`logcat --pid $(pidof -s {{package}})` diff --git a/tldr/ansible-vault b/tldr/ansible-vault index ccdb7a76..588616c4 100644 --- a/tldr/ansible-vault +++ b/tldr/ansible-vault @@ -14,11 +14,11 @@ source: https://github.com/tldr-pages/tldr.git - Create a new encrypted vault file using a vault key file to encrypt it: -`ansible-vault create --vault-password-file={{password_file}} {{vault_file}}` +`ansible-vault create --vault-password-file {{password_file}} {{vault_file}}` - Encrypt an existing file using an optional password file: -`ansible-vault encrypt --vault-password-file={{password_file}} {{vault_file}}` +`ansible-vault encrypt --vault-password-file {{password_file}} {{vault_file}}` - Encrypt a string using Ansible's encrypted string format, displaying interactive prompts: @@ -26,8 +26,8 @@ source: https://github.com/tldr-pages/tldr.git - View an encrypted file, using a password file to decrypt: -`ansible-vault view --vault-password-file={{password_file}} {{vault_file}}` +`ansible-vault view --vault-password-file {{password_file}} {{vault_file}}` - Re-key already encrypted vault file with a new password file: -`ansible-vault rekey --vault-password-file={{old_password_file}} --new-vault-password-file={{new_password_file}} {{vault_file}}` +`ansible-vault rekey --vault-password-file {{old_password_file}} --new-vault-password-file {{new_password_file}} {{vault_file}}` diff --git a/tldr/apg b/tldr/apg index f792d256..6f705df0 100644 --- a/tldr/apg +++ b/tldr/apg @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # apg -> Creates arbitrarily complex random passwords. +> Create arbitrarily complex random passwords. > More information: . - Create random passwords (default password length is 8): diff --git a/tldr/aria2c b/tldr/aria2c index 075c573f..fcbbce5b 100644 --- a/tldr/aria2c +++ b/tldr/aria2c @@ -15,7 +15,7 @@ source: https://github.com/tldr-pages/tldr.git - Download a file from a URI with a specific output name: -`aria2c --out={{path/to/file}} "{{url}}"` +`aria2c --out {{path/to/file}} "{{url}}"` - Download multiple different files in parallel: @@ -27,16 +27,16 @@ source: https://github.com/tldr-pages/tldr.git - Download the URIs listed in a file with a specific number of parallel downloads: -`aria2c --input-file={{path/to/file}} --max-concurrent-downloads={{number_of_downloads}}` +`aria2c --input-file {{path/to/file}} --max-concurrent-downloads {{number_of_downloads}}` - Download with multiple connections: -`aria2c --split={{number_of_connections}} "{{url}}"` +`aria2c --split {{number_of_connections}} "{{url}}"` - FTP download with username and password: -`aria2c --ftp-user={{username}} --ftp-passwd={{password}} "{{url}}"` +`aria2c --ftp-user {{username}} --ftp-passwd {{password}} "{{url}}"` - Limit download speed in bytes/s: -`aria2c --max-download-limit={{speed}} "{{url}}"` +`aria2c --max-download-limit {{speed}} "{{url}}"` diff --git a/tldr/asciidoctor b/tldr/asciidoctor index 0e834e79..7e80ee59 100644 --- a/tldr/asciidoctor +++ b/tldr/asciidoctor @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Convert a specific `.adoc` file to HTML and link a CSS stylesheet: -`asciidoctor -a stylesheet={{path/to/stylesheet.css}} {{path/to/file.adoc}}` +`asciidoctor -a stylesheet {{path/to/stylesheet.css}} {{path/to/file.adoc}}` - Convert a specific `.adoc` file to embeddable HTML, removing everything except the body: @@ -22,4 +22,4 @@ source: https://github.com/tldr-pages/tldr.git - Convert a specific `.adoc` file to a PDF using the `asciidoctor-pdf` library: -`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{path/to/file.adoc}}` +`asciidoctor --backend {{pdf}} --require {{asciidoctor-pdf}} {{path/to/file.adoc}}` diff --git a/tldr/autoconf b/tldr/autoconf index e223938d..3a4729fe 100644 --- a/tldr/autoconf +++ b/tldr/autoconf @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - Generate a configuration script from the specified template (even if the input file has not changed) and write the output to a file: -`autoconf --force --output={{outfile}} {{template-file}}` +`autoconf --force --output {{outfile}} {{template-file}}` diff --git a/tldr/aws-glue b/tldr/aws-glue index 3fecd853..fc1d9fb2 100644 --- a/tldr/aws-glue +++ b/tldr/aws-glue @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # aws glue > CLI for AWS Glue. -> Defines the public endpoint for the AWS Glue service. +> Define the public endpoint for the AWS Glue service. > More information: . - List jobs: diff --git a/tldr/behat b/tldr/behat index 41c8b847..9678c76b 100644 --- a/tldr/behat +++ b/tldr/behat @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Run all tests from the specified suite: -`behat --suite={{suite_name}}` +`behat --suite {{suite_name}}` - Run tests with a specific output formatter: diff --git a/tldr/blackfire b/tldr/blackfire index 426dfd1c..4a03b36c 100644 --- a/tldr/blackfire +++ b/tldr/blackfire @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Run the profiler and collect 10 samples: -`blackfire --samples={{10}} run {{php path/to/file.php}}` +`blackfire --samples {{10}} run {{php path/to/file.php}}` - Run the profiler and output results as JSON: diff --git a/tldr/borg b/tldr/borg index c7ac3827..a2ad9c04 100644 --- a/tldr/borg +++ b/tldr/borg @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # borg > Deduplicating backup tool. -> Creates local or remote backups that are mountable as filesystems. +> Create local or remote backups that are mountable as filesystems. > More information: . - Initialize a (local) repository: diff --git a/tldr/bq b/tldr/bq index 12c72902..3050d4a1 100644 --- a/tldr/bq +++ b/tldr/bq @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Batch load data from a specific file in formats such as CSV, JSON, Parquet, and Avro to a table: -`bq load --location={{location}} --source_format={{CSV|JSON|PARQUET|AVRO}} {{dataset}}.{{table}} {{path_to_source}}` +`bq load --location {{location}} --source_format {{CSV|JSON|PARQUET|AVRO}} {{dataset}}.{{table}} {{path_to_source}}` - Copy one table to another: diff --git a/tldr/brew-bundle b/tldr/brew-bundle index 1ed2fd74..2ef859b7 100644 --- a/tldr/brew-bundle +++ b/tldr/brew-bundle @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Install packages from a specific Brewfile at a specific path: -`brew bundle --file={{path/to/file}}` +`brew bundle --file {{path/to/file}}` - Create a Brewfile from all installed packages: diff --git a/tldr/bshell b/tldr/bshell index 914a833a..21dbeea6 100644 --- a/tldr/bshell +++ b/tldr/bshell @@ -23,4 +23,4 @@ source: https://github.com/tldr-pages/tldr.git - Browse for both SSH and VNC servers in a specified domain: -`bshell --domain={{domain}}` +`bshell --domain {{domain}}` diff --git a/tldr/bssh b/tldr/bssh index 9c437ec2..1d0e13cd 100644 --- a/tldr/bssh +++ b/tldr/bssh @@ -23,4 +23,4 @@ source: https://github.com/tldr-pages/tldr.git - Browse for SSH servers in a specified domain: -`bssh --domain={{domain}}` +`bssh --domain {{domain}}` diff --git a/tldr/bundletool b/tldr/bundletool index 7a43caff..3a12cd13 100644 --- a/tldr/bundletool +++ b/tldr/bundletool @@ -15,28 +15,28 @@ source: https://github.com/tldr-pages/tldr.git - Generate APKs from an application bundle (prompts for keystore password): -`bundletool build-apks --bundle={{path/to/bundle.aab}} --ks={{path/to/key.keystore}} --ks-key-alias={{key_alias}} --output={{path/to/file.apks}}` +`bundletool build-apks --bundle {{path/to/bundle.aab}} --ks {{path/to/key.keystore}} --ks-key-alias {{key_alias}} --output {{path/to/file.apks}}` - Generate APKs from an application bundle giving the keystore password: -`bundletool build-apks --bundle={{path/to/bundle.aab}} --ks={{path/to/key.keystore}} --ks-key-alias={{key_alias}} –ks-pass={{pass:the_password}} --output={{path/to/file.apks}}` +`bundletool build-apks --bundle {{path/to/bundle.aab}} --ks {{path/to/key.keystore}} --ks-key-alias {{key_alias}} –ks-pass {{pass:the_password}} --output {{path/to/file.apks}}` - Generate APKs including only one single APK for universal usage: -`bundletool build-apks --bundle={{path/to/bundle.aab}} --mode={{universal}} --ks={{path/to/key.keystore}} --ks-key-alias={{key_alias}} --output={{path/to/file.apks}}` +`bundletool build-apks --bundle {{path/to/bundle.aab}} --mode {{universal}} --ks {{path/to/key.keystore}} --ks-key-alias {{key_alias}} --output {{path/to/file.apks}}` - Install the right combination of APKs to an emulator or device: -`bundletool install-apks --apks={{path/to/file.apks}}` +`bundletool install-apks --apks {{path/to/file.apks}}` - Estimate the download size of an application: -`bundletool get-size total --apks={{path/to/file.apks}}` +`bundletool get-size total --apks {{path/to/file.apks}}` - Generate a device specification JSON file for an emulator or device: -`bundletool get-device-spec --output={{path/to/file.json}}` +`bundletool get-device-spec --output {{path/to/file.json}}` - Verify a bundle and display detailed information about it: -`bundletool validate --bundle={{path/to/bundle.aab}}` +`bundletool validate --bundle {{path/to/bundle.aab}}` diff --git a/tldr/bundletool-dump b/tldr/bundletool-dump index 413f2642..7c92879d 100644 --- a/tldr/bundletool-dump +++ b/tldr/bundletool-dump @@ -10,28 +10,28 @@ source: https://github.com/tldr-pages/tldr.git - Display the `AndroidManifest.xml` of the base module: -`bundletool dump manifest --bundle={{path/to/bundle.aab}}` +`bundletool dump manifest --bundle {{path/to/bundle.aab}}` - Display a specific value from the `AndroidManifest.xml` using XPath: -`bundletool dump manifest --bundle={{path/to/bundle.aab}} --xpath={{/manifest/@android:versionCode}}` +`bundletool dump manifest --bundle {{path/to/bundle.aab}} --xpath {{/manifest/@android:versionCode}}` - Display the `AndroidManifest.xml` of a specific module: -`bundletool dump manifest --bundle={{path/to/bundle.aab}} --module={{name}}` +`bundletool dump manifest --bundle {{path/to/bundle.aab}} --module {{name}}` - Display all the resources in the application bundle: -`bundletool dump resources --bundle={{path/to/bundle.aab}}` +`bundletool dump resources --bundle {{path/to/bundle.aab}}` - Display the configuration for a specific resource: -`bundletool dump resources --bundle={{path/to/bundle.aab}} --resource={{type/name}}` +`bundletool dump resources --bundle {{path/to/bundle.aab}} --resource {{type/name}}` - Display the configuration and values for a specific resource using the ID: -`bundletool dump resources --bundle={{path/to/bundle.aab}} --resource={{0x7f0e013a}} --values` +`bundletool dump resources --bundle {{path/to/bundle.aab}} --resource {{0x7f0e013a}} --values` - Display the contents of the bundle configuration file: -`bundletool dump config --bundle={{path/to/bundle.aab}}` +`bundletool dump config --bundle {{path/to/bundle.aab}}` diff --git a/tldr/bundletool-validate b/tldr/bundletool-validate index 391ab6b5..d97d8e1d 100644 --- a/tldr/bundletool-validate +++ b/tldr/bundletool-validate @@ -10,4 +10,4 @@ source: https://github.com/tldr-pages/tldr.git - Verify a bundle and display detailed information about it: -`bundletool validate --bundle={{path/to/bundle.aab}}` +`bundletool validate --bundle {{path/to/bundle.aab}}` diff --git a/tldr/bvnc b/tldr/bvnc index 4510a78c..a5afa629 100644 --- a/tldr/bvnc +++ b/tldr/bvnc @@ -23,4 +23,4 @@ source: https://github.com/tldr-pages/tldr.git - Browse for VNC servers in a specified domain: -`bvnc --domain={{domain}}` +`bvnc --domain {{domain}}` diff --git a/tldr/chgrp b/tldr/chgrp index 1c8da931..b3269d7f 100644 --- a/tldr/chgrp +++ b/tldr/chgrp @@ -22,4 +22,4 @@ source: https://github.com/tldr-pages/tldr.git - Change the owner group of a file/directory to match a reference file: -`chgrp --reference={{path/to/reference_file}} {{path/to/file_or_directory}}` +`chgrp --reference {{path/to/reference_file}} {{path/to/file_or_directory}}` diff --git a/tldr/chown b/tldr/chown index a8288b19..599e1f48 100644 --- a/tldr/chown +++ b/tldr/chown @@ -30,4 +30,4 @@ source: https://github.com/tldr-pages/tldr.git - Change the owner of a file/directory to match a reference file: -`chown --reference={{path/to/reference_file}} {{path/to/file_or_directory}}` +`chown --reference {{path/to/reference_file}} {{path/to/file_or_directory}}` diff --git a/tldr/clang-format b/tldr/clang-format index 5ff6b3a8..ca91209a 100644 --- a/tldr/clang-format +++ b/tldr/clang-format @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Format a file using a predefined coding style: -`clang-format --style={{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} {{path/to/file}}` +`clang-format --style {{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} {{path/to/file}}` - Format a file using the `.clang-format` file in one of the parent directories of the source file: @@ -26,4 +26,4 @@ source: https://github.com/tldr-pages/tldr.git - Generate a custom `.clang-format` file: -`clang-format --style={{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} --dump-config > {{.clang-format}}` +`clang-format --style {{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} --dump-config > {{.clang-format}}` diff --git a/tldr/conan-frogarian b/tldr/conan-frogarian index 2abb9677..6bcc6f3c 100644 --- a/tldr/conan-frogarian +++ b/tldr/conan-frogarian @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # conan frogarian -> Displays the conan frogarian. +> Display the conan frogarian. > More information: . - Display the conan frogarian: diff --git a/tldr/cppcheck b/tldr/cppcheck index 484fcd34..63a7050b 100644 --- a/tldr/cppcheck +++ b/tldr/cppcheck @@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git - Check a given file, specifying which tests to perform (by default only errors are shown): -`cppcheck --enable={{error|warning|style|performance|portability|information|all}} {{path/to/file.cpp}}` +`cppcheck --enable {{error|warning|style|performance|portability|information|all}} {{path/to/file.cpp}}` - List available tests: @@ -27,7 +27,7 @@ source: https://github.com/tldr-pages/tldr.git - Check a given file, ignoring specific tests: -`cppcheck --suppress={{test_id1}} --suppress={{test_id2}} {{path/to/file.cpp}}` +`cppcheck --suppress {{test_id1}} --suppress {{test_id2}} {{path/to/file.cpp}}` - Check the current directory, providing paths for include files located outside it (e.g. external libraries): @@ -35,4 +35,4 @@ source: https://github.com/tldr-pages/tldr.git - Check a Microsoft Visual Studio project (`*.vcxproj`) or solution (`*.sln`): -`cppcheck --project={{path/to/project.sln}}` +`cppcheck --project {{path/to/project.sln}}` diff --git a/tldr/cppclean b/tldr/cppclean index ba0a61dd..e4c14420 100644 --- a/tldr/cppclean +++ b/tldr/cppclean @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Run on a project where the headers are in the `inc1/` and `inc2/` directories: -`cppclean {{path/to/project}} --include-path={{inc1}} --include-path={{inc2}}` +`cppclean {{path/to/project}} --include-path {{inc1}} --include-path {{inc2}}` - Run on a specific file `main.cpp`: @@ -22,4 +22,4 @@ source: https://github.com/tldr-pages/tldr.git - Run on the current directory, excluding the "build" directory: -`cppclean {{.}} --exclude={{build}}` +`cppclean {{.}} --exclude {{build}}` diff --git a/tldr/createdb b/tldr/createdb index 76a58914..c97141b9 100644 --- a/tldr/createdb +++ b/tldr/createdb @@ -14,8 +14,8 @@ source: https://github.com/tldr-pages/tldr.git - Create a database owned by a specific user with a description: -`createdb --owner={{username}} {{database_name}} '{{description}}'` +`createdb --owner {{username}} {{database_name}} '{{description}}'` - Create a database from a template: -`createdb --template={{template_name}} {{database_name}}` +`createdb --template {{template_name}} {{database_name}}` diff --git a/tldr/csv-diff b/tldr/csv-diff index 47c88d41..594373a0 100644 --- a/tldr/csv-diff +++ b/tldr/csv-diff @@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git - Display a human-readable summary of differences between files using a specific column as a unique identifier: -`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key={{column_name}}` +`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key {{column_name}}` - Display a human-readable summary of differences between files that includes unchanged values in rows with at least one change: -`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key={{column_name}} --show-unchanged` +`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key {{column_name}} --show-unchanged` - Display a summary of differences between files in JSON format using a specific column as a unique identifier: -`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key={{column_name}} --json` +`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key {{column_name}} --json` diff --git a/tldr/cut b/tldr/cut index 09503620..d748556f 100644 --- a/tldr/cut +++ b/tldr/cut @@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git - Print a specific character/field range of each line: -`{{command}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}` +`{{command}} | cut --{{characters|fields}} {{1|1,10|1-10|1-|-10}}` - Print a field range of each line with a specific delimiter: -`{{command}} | cut --delimiter="{{,}}" --fields={{1}}` +`{{command}} | cut --delimiter="{{,}}" --fields {{1}}` - Print a character range of each line of the specific file: -`cut --characters={{1}} {{path/to/file}}` +`cut --characters {{1}} {{path/to/file}}` diff --git a/tldr/date b/tldr/date index e933dcc2..d011226d 100644 --- a/tldr/date +++ b/tldr/date @@ -30,7 +30,7 @@ source: https://github.com/tldr-pages/tldr.git - Display the current date using the RFC-3339 format (`YYYY-MM-DD hh:mm:ss TZ`): -`date --rfc-3339=s` +`date --rfc-3339 s` - Set the current date using the format `MMDDhhmmYYYY.ss` (`YYYY` and `.ss` are optional): diff --git a/tldr/dirs b/tldr/dirs index efde29a7..2b5adbee 100644 --- a/tldr/dirs +++ b/tldr/dirs @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # dirs -> Displays or manipulates the directory stack. +> Display or manipulate the directory stack. > The directory stack is a list of recently visited directories that can be manipulated with the `pushd` and `popd` commands. > More information: . diff --git a/tldr/docker-commit b/tldr/docker-commit index d667e9f7..b1c3b663 100644 --- a/tldr/docker-commit +++ b/tldr/docker-commit @@ -14,23 +14,23 @@ source: https://github.com/tldr-pages/tldr.git - Apply a `CMD` Dockerfile instruction to the created image: -`docker commit --change="CMD {{command}}" {{container}} {{image}}:{{tag}}` +`docker commit --change "CMD {{command}}" {{container}} {{image}}:{{tag}}` - Apply an `ENV` Dockerfile instruction to the created image: -`docker commit --change="ENV {{name}}={{value}}" {{container}} {{image}}:{{tag}}` +`docker commit --change "ENV {{name}}={{value}}" {{container}} {{image}}:{{tag}}` - Create an image with a specific author in the metadata: -`docker commit --author="{{author}}" {{container}} {{image}}:{{tag}}` +`docker commit --author "{{author}}" {{container}} {{image}}:{{tag}}` - Create an image with a specific comment in the metadata: -`docker commit --message="{{comment}}" {{container}} {{image}}:{{tag}}` +`docker commit --message "{{comment}}" {{container}} {{image}}:{{tag}}` - Create an image without pausing the container during commit: -`docker commit --pause={{false}} {{container}} {{image}}:{{tag}}` +`docker commit --pause {{false}} {{container}} {{image}}:{{tag}}` - Display help: diff --git a/tldr/docker-ps b/tldr/docker-ps index 144ce012..0937b43b 100644 --- a/tldr/docker-ps +++ b/tldr/docker-ps @@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git - Filter containers that contain a substring in their name: -`docker ps --filter="name={{name}}"` +`docker ps --filter "name={{name}}"` - Filter containers that share a given image as an ancestor: @@ -34,8 +34,8 @@ source: https://github.com/tldr-pages/tldr.git - Filter containers by status (created, running, removing, paused, exited and dead): -`docker ps --filter="status={{status}}"` +`docker ps --filter "status={{status}}"` - Filter containers that mount a specific volume or have a volume mounted in a specific path: -`docker ps --filter="volume={{path/to/directory}}" --format "table {{.ID}} {{.Image}} {{.Names}} {{.Mounts}}"` +`docker ps --filter "volume={{path/to/directory}}" --format "table {{.ID}} {{.Image}} {{.Names}} {{.Mounts}}"` diff --git a/tldr/docker-system b/tldr/docker-system index ffa597c3..f768440a 100644 --- a/tldr/docker-system +++ b/tldr/docker-system @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Remove unused data created more than a specified amount of time in the past: -`docker system prune --filter="until={{hours}}h{{minutes}}m"` +`docker system prune --filter "until={{hours}}h{{minutes}}m"` - Display real-time events from the Docker daemon: diff --git a/tldr/dolt-blame b/tldr/dolt-blame index e6a9b1ee..37cfbff0 100644 --- a/tldr/dolt-blame +++ b/tldr/dolt-blame @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # dolt blame -> Displays commit information for each row of a Dolt table. +> Display commit information for each row of a Dolt table. > More information: . - Display the latest commit for each row of a table: diff --git a/tldr/dolt-version b/tldr/dolt-version index 609bfe9f..8201e52c 100644 --- a/tldr/dolt-version +++ b/tldr/dolt-version @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # dolt version -> Displays the current dolt CLI version. +> Display the current dolt CLI version. > More information: . - Display version: diff --git a/tldr/duplicity b/tldr/duplicity index 10942abe..f7ac7dd3 100644 --- a/tldr/duplicity +++ b/tldr/duplicity @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # duplicity -> Creates incremental, compressed, encrypted and versioned backups. +> Create incremental, compressed, encrypted and versioned backups. > Can also upload the backups to a variety of backend services. > More information: . diff --git a/tldr/factor b/tldr/factor index 32debe2c..9bbb1952 100644 --- a/tldr/factor +++ b/tldr/factor @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # factor -> Prints the prime factorization of a number. +> Print the prime factorization of a number. > More information: . - Display the prime-factorization of a number: diff --git a/tldr/from b/tldr/from index 6db26d36..73194ad4 100644 --- a/tldr/from +++ b/tldr/from @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # from -> Prints mail header lines from the current user's mailbox. +> Print mail header lines from the current user's mailbox. > More information: . - List mail: diff --git a/tldr/gcal b/tldr/gcal index 9ef4aec2..b5593a9e 100644 --- a/tldr/gcal +++ b/tldr/gcal @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # gcal -> Displays calendar. +> Display calendar. > More information: . - Display calendar for the current month: diff --git a/tldr/gh-api b/tldr/gh-api index 9886a7cb..e384b344 100644 --- a/tldr/gh-api +++ b/tldr/gh-api @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # gh api -> Makes authenticated HTTP requests to the GitHub API and prints the response. +> Make authenticated HTTP requests to the GitHub API and print the response. > More information: . - Display the releases for the current repository in JSON format: diff --git a/tldr/git-var b/tldr/git-var index 28c22e13..cf96d7cf 100644 --- a/tldr/git-var +++ b/tldr/git-var @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # git var -> Prints a Git logical variable's value. +> Print a Git logical variable's value. > See `git config`, which is preferred over `git var`. > More information: . diff --git a/tldr/go-fmt b/tldr/go-fmt index 374e1474..0d86f487 100644 --- a/tldr/go-fmt +++ b/tldr/go-fmt @@ -5,8 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # go fmt -> Format Go source files. -> Prints the filenames that are changed. +> Format Go source files, printing the changed filenames. > More information: . - Format Go source files in the current directory: diff --git a/tldr/grep b/tldr/grep index 101fd19e..e6274b63 100644 --- a/tldr/grep +++ b/tldr/grep @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Search for a pattern in all files recursively in a directory, showing line numbers of matches, ignoring binary files: -`grep --recursive --line-number --binary-files={{without-match}} "{{search_pattern}}" {{path/to/directory}}` +`grep --recursive --line-number --binary-files {{without-match}} "{{search_pattern}}" {{path/to/directory}}` - Use extended regular expressions (supports `?`, `+`, `{}`, `()` and `|`), in case-insensitive mode: @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Print 3 lines of context around, before, or after each match: -`grep --{{context|before-context|after-context}}={{3}} "{{search_pattern}}" {{path/to/file}}` +`grep --{{context|before-context|after-context}} {{3}} "{{search_pattern}}" {{path/to/file}}` - Print file name and line number for each match with color output: diff --git a/tldr/hostid b/tldr/hostid index 29766508..8313064c 100644 --- a/tldr/hostid +++ b/tldr/hostid @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # hostid -> Prints the numeric identifier for the current host (not necessarily the IP address). +> Print the numeric identifier for the current host (not necessarily the IP address). > More information: . - Display the numeric identifier for the current host in hexadecimal: diff --git a/tldr/kubectl-apply b/tldr/kubectl-apply index e1d23185..f50d1271 100644 --- a/tldr/kubectl-apply +++ b/tldr/kubectl-apply @@ -5,7 +5,8 @@ source: https://github.com/tldr-pages/tldr.git --- # kubectl apply -> Manages applications through files defining Kubernetes resources. It creates and updates resources in a cluster. +> Manage applications through files defining Kubernetes resources. +> Create and update resources in a cluster. > More information: . - Apply a configuration to a resource by file name or `stdin`: diff --git a/tldr/linux/add-apt-repository b/tldr/linux/add-apt-repository index a9e922fb..8b28106b 100644 --- a/tldr/linux/add-apt-repository +++ b/tldr/linux/add-apt-repository @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # add-apt-repository -> Manages `apt` repository definitions. +> Manage `apt` repository definitions. > More information: . - Add a new `apt` repository: diff --git a/tldr/linux/apt-add-repository b/tldr/linux/apt-add-repository index f449282a..2db07fec 100644 --- a/tldr/linux/apt-add-repository +++ b/tldr/linux/apt-add-repository @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # apt-add-repository -> Manages `apt` repository definitions. +> Manage `apt` repository definitions. > More information: . - Add a new `apt` repository: diff --git a/tldr/linux/avahi-browse b/tldr/linux/avahi-browse index 9a50ec6b..4c886ca5 100644 --- a/tldr/linux/avahi-browse +++ b/tldr/linux/avahi-browse @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # avahi-browse -> Displays services and hosts exposed on the local network via mDNS/DNS-SD. +> Display services and hosts exposed on the local network via mDNS/DNS-SD. > Avahi is compatible with Bonjour (Zeroconf) found in Apple devices. > More information: . diff --git a/tldr/linux/caja b/tldr/linux/caja index 44b4a179..6daa1f5d 100644 --- a/tldr/linux/caja +++ b/tldr/linux/caja @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # caja -> Manages files and directories in MATE desktop environment. +> Manage files and directories in the MATE desktop environment. > See also: `nautilus`, `dolphin`, `thunar`, `ranger`. > More information: . diff --git a/tldr/linux/dmenu b/tldr/linux/dmenu index 5c00e7e1..632febbd 100644 --- a/tldr/linux/dmenu +++ b/tldr/linux/dmenu @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # dmenu > Dynamic menu. -> Creates a menu from a text input with each item on a new line. +> Create a menu from a text input with each item on a new line. > More information: . - Display a menu of the output of the `ls` command: diff --git a/tldr/linux/dockerd b/tldr/linux/dockerd index fa699c67..90592075 100644 --- a/tldr/linux/dockerd +++ b/tldr/linux/dockerd @@ -26,4 +26,4 @@ source: https://github.com/tldr-pages/tldr.git - Run and set a specific log level: -`dockerd --log-level={{debug|info|warn|error|fatal}}` +`dockerd --log-level {{debug|info|warn|error|fatal}}` diff --git a/tldr/linux/export b/tldr/linux/export index 9f0e4c16..024f5a21 100644 --- a/tldr/linux/export +++ b/tldr/linux/export @@ -23,3 +23,7 @@ source: https://github.com/tldr-pages/tldr.git - Append a pathname to the environment variable `PATH`: `export PATH=$PATH:{{path/to/append}}` + +- Display a list of active exported variables in shell command form: + +`export -p` diff --git a/tldr/linux/fatlabel b/tldr/linux/fatlabel index f15ac4f8..4d365919 100644 --- a/tldr/linux/fatlabel +++ b/tldr/linux/fatlabel @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # fatlabel -> Sets or gets the label of a FAT32 partition. +> Get or set the label of a FAT32 partition. > More information: . - Get the label of a FAT32 partition: diff --git a/tldr/linux/ico b/tldr/linux/ico index 0dce9107..97b4cccb 100644 --- a/tldr/linux/ico +++ b/tldr/linux/ico @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ico -> Displays an animation of a polyhedron. +> Display an animation of a polyhedron. > More information: . - Display the wireframe of an icosahedron that changes its position every 0.1 seconds: diff --git a/tldr/linux/id3v2 b/tldr/linux/id3v2 index df6368e6..71bc7440 100644 --- a/tldr/linux/id3v2 +++ b/tldr/linux/id3v2 @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # id3v2 -> Manages id3v2 tags, converts and lists id3v1. +> Manage id3v2 tags, converts and lists id3v1. > More information: . - List all genres: diff --git a/tldr/linux/lscpu b/tldr/linux/lscpu index 852e778c..66580207 100644 --- a/tldr/linux/lscpu +++ b/tldr/linux/lscpu @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # lscpu -> Displays information about the CPU architecture. +> Display information about the CPU architecture. > More information: . - Display information about all CPUs: diff --git a/tldr/linux/man b/tldr/linux/man index d8818372..66b0d767 100644 --- a/tldr/linux/man +++ b/tldr/linux/man @@ -34,7 +34,7 @@ source: https://github.com/tldr-pages/tldr.git - Display the man page using a specific locale: -`man --locale={{locale}} {{command}}` +`man --locale {{locale}} {{command}}` - Search for manpages containing a search string: diff --git a/tldr/linux/mashtree b/tldr/linux/mashtree index f85fa995..581cfb93 100644 --- a/tldr/linux/mashtree +++ b/tldr/linux/mashtree @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mashtree -> Makes a fast tree from genomes. +> Make a fast tree from genomes. > Does not make a phylogeny. > More information: . diff --git a/tldr/linux/mke2fs b/tldr/linux/mke2fs index 6753949d..372b8469 100644 --- a/tldr/linux/mke2fs +++ b/tldr/linux/mke2fs @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mke2fs -> Creates a Linux filesystem inside a partition. +> Create a Linux filesystem inside a partition. > More information: . - Create an ext2 filesystem in partition 1 of device b (`sdb1`): diff --git a/tldr/linux/mkfs.cramfs b/tldr/linux/mkfs.cramfs index aad7d3b2..b3d24827 100644 --- a/tldr/linux/mkfs.cramfs +++ b/tldr/linux/mkfs.cramfs @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.cramfs -> Creates a ROM filesystem inside a partition. +> Create a ROM filesystem inside a partition. > More information: . - Create a ROM filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.exfat b/tldr/linux/mkfs.exfat index 1c3e82f9..94fec458 100644 --- a/tldr/linux/mkfs.exfat +++ b/tldr/linux/mkfs.exfat @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.exfat -> Creates an exfat filesystem inside a partition. +> Create an exfat filesystem inside a partition. > More information: . - Create an exfat filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.ext4 b/tldr/linux/mkfs.ext4 index 5914ae97..c2f4ef6f 100644 --- a/tldr/linux/mkfs.ext4 +++ b/tldr/linux/mkfs.ext4 @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.ext4 -> Creates an ext4 filesystem inside a partition. +> Create an ext4 filesystem inside a partition. > More information: . - Create an ext4 filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.f2fs b/tldr/linux/mkfs.f2fs index d581f157..462758f0 100644 --- a/tldr/linux/mkfs.f2fs +++ b/tldr/linux/mkfs.f2fs @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.f2fs -> Creates an F2FS filesystem inside a partition. +> Create an F2FS filesystem inside a partition. > More information: . - Create an F2FS filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.fat b/tldr/linux/mkfs.fat index 93428b1f..b5164829 100644 --- a/tldr/linux/mkfs.fat +++ b/tldr/linux/mkfs.fat @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.fat -> Creates an MS-DOS filesystem inside a partition. +> Create an MS-DOS filesystem inside a partition. > More information: . - Create a fat filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.minix b/tldr/linux/mkfs.minix index c0965772..9d165f2c 100644 --- a/tldr/linux/mkfs.minix +++ b/tldr/linux/mkfs.minix @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.minix -> Creates a Minix filesystem inside a partition. +> Create a Minix filesystem inside a partition. > More information: . - Create a Minix filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.ntfs b/tldr/linux/mkfs.ntfs index 95ba1a93..aaf5d6bc 100644 --- a/tldr/linux/mkfs.ntfs +++ b/tldr/linux/mkfs.ntfs @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.ntfs -> Creates a NTFS filesystem inside a partition. +> Create a NTFS filesystem inside a partition. > More information: . - Create a NTFS filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/mkfs.vfat b/tldr/linux/mkfs.vfat index 7b68876e..eb110b5f 100644 --- a/tldr/linux/mkfs.vfat +++ b/tldr/linux/mkfs.vfat @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfs.vfat -> Creates an MS-DOS filesystem inside a partition. +> Create an MS-DOS filesystem inside a partition. > More information: . - Create a vfat filesystem inside partition 1 on device b (`sdb1`): diff --git a/tldr/linux/nemo b/tldr/linux/nemo index 794ad4c0..3545f6e0 100644 --- a/tldr/linux/nemo +++ b/tldr/linux/nemo @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # nemo -> Manages files and directories in Cinnamon desktop environment. +> Manage files and directories in Cinnamon desktop environment. > More information: . - Open the current user home directory: diff --git a/tldr/linux/pidof b/tldr/linux/pidof index 21f6b533..72c93cc1 100644 --- a/tldr/linux/pidof +++ b/tldr/linux/pidof @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # pidof -> Gets the ID of a process using its name. +> Get the ID of a process using its name. > More information: . - List all process IDs with given name: diff --git a/tldr/linux/readelf b/tldr/linux/readelf index cd4ed382..a26907ce 100644 --- a/tldr/linux/readelf +++ b/tldr/linux/readelf @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # readelf -> Displays information about ELF files. +> Display information about ELF files. > More information: . - Display all information about the ELF file: diff --git a/tldr/linux/readpe b/tldr/linux/readpe index e1799269..55226b01 100644 --- a/tldr/linux/readpe +++ b/tldr/linux/readpe @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # readpe -> Displays information about PE files. +> Display information about PE files. > More information: . - Display all information about a PE file: diff --git a/tldr/linux/rpcinfo b/tldr/linux/rpcinfo index 024da7cd..82602095 100644 --- a/tldr/linux/rpcinfo +++ b/tldr/linux/rpcinfo @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # rpcinfo -> Makes an RPC call to an RPC server and reports what it finds. +> Make an RPC call to an RPC server and reports what it finds. > More information: . - Show full table of all RPC services registered on localhost: diff --git a/tldr/linux/size b/tldr/linux/size index 9d9d9b78..4a52a5f6 100644 --- a/tldr/linux/size +++ b/tldr/linux/size @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # size -> Displays the sizes of sections inside binary files. +> Display the sizes of sections inside binary files. > More information: . - Display the size of sections in a given object or executable file: diff --git a/tldr/linux/sm b/tldr/linux/sm index d76b43ba..59c63cc7 100644 --- a/tldr/linux/sm +++ b/tldr/linux/sm @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # sm -> Displays a short message fullscreen. +> Display a short message fullscreen. > More information: . - Display a message in full-screen: diff --git a/tldr/linux/toolbox-help b/tldr/linux/toolbox-help index 0102ff08..8f1a8d5e 100644 --- a/tldr/linux/toolbox-help +++ b/tldr/linux/toolbox-help @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # toolbox help -> Displays help information about `toolbox`. +> Display help information about `toolbox`. > More information: . - Display the `toolbox` manual: diff --git a/tldr/linux/uprecords b/tldr/linux/uprecords index daacb2b3..d9ead127 100644 --- a/tldr/linux/uprecords +++ b/tldr/linux/uprecords @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # uprecords -> Displays a summary of historical uptime records. +> Display a summary of historical uptime records. > More information: . - Display a summary of the top 10 historical uptime records: diff --git a/tldr/linux/usermod b/tldr/linux/usermod index 202b4f13..737c9e53 100644 --- a/tldr/linux/usermod +++ b/tldr/linux/usermod @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # usermod -> Modifies a user account. +> Modify a user account. > See also: `users`, `useradd`, `userdel`. > More information: . diff --git a/tldr/linux/xmount b/tldr/linux/xmount index 0a19b823..c2f71ebb 100644 --- a/tldr/linux/xmount +++ b/tldr/linux/xmount @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # xmount > Convert on-the-fly between multiple input and output hard disk image types with optional write cache support. -> Creates a virtual file system using FUSE (Filesystem in Userspace) that contains a virtual representation of the input image. +> Create a virtual file system using FUSE (Filesystem in Userspace) that contains a virtual representation of the input image. > More information: . - Mount a `.raw` image file into a DMG container file: diff --git a/tldr/ln b/tldr/ln index e322d0f3..80fe116e 100644 --- a/tldr/ln +++ b/tldr/ln @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # ln -> Creates links to files and directories. +> Create links to files and directories. > More information: . - Create a symbolic link to a file or directory: diff --git a/tldr/mkfifo b/tldr/mkfifo index 7b0ca6ec..3566b3c1 100644 --- a/tldr/mkfifo +++ b/tldr/mkfifo @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkfifo -> Makes FIFOs (named pipes). +> Make FIFOs (named pipes). > More information: . - Create a named pipe at a given path: diff --git a/tldr/netstat b/tldr/netstat index 81e2d1f9..0d1ab543 100644 --- a/tldr/netstat +++ b/tldr/netstat @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # netstat -> Displays network-related information such as open connections, open socket ports, etc. +> Display network-related information such as open connections, open socket ports, etc. > More information: . - List all ports: diff --git a/tldr/osx/airportd b/tldr/osx/airportd index 9fdc10ec..8605dd5f 100644 --- a/tldr/osx/airportd +++ b/tldr/osx/airportd @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # airportd -> Manages wireless interfaces. +> Manage wireless interfaces. > It should not be invoked manually. > More information: . diff --git a/tldr/osx/backupd b/tldr/osx/backupd index b3189466..06a03fcd 100644 --- a/tldr/osx/backupd +++ b/tldr/osx/backupd @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # backupd -> Creates Time Machine backups and manages its backup history. +> Create Time Machine backups and manages its backup history. > It should not be invoked manually. > More information: . diff --git a/tldr/osx/cal b/tldr/osx/cal index 79d99137..0545e281 100644 --- a/tldr/osx/cal +++ b/tldr/osx/cal @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # cal -> Prints calendar information. +> Print calendar information. > More information: . - Display a calendar for the current month: diff --git a/tldr/osx/corebrightnessd b/tldr/osx/corebrightnessd index b1cc91e6..5d4fe26b 100644 --- a/tldr/osx/corebrightnessd +++ b/tldr/osx/corebrightnessd @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # corebrightnessd -> Manages Night Shift. +> Manage Night Shift. > It should not be invoked manually. > More information: . diff --git a/tldr/osx/fontd b/tldr/osx/fontd index b8244228..c869d199 100644 --- a/tldr/osx/fontd +++ b/tldr/osx/fontd @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # fontd -> Makes fonts available to the system. +> Make fonts available to the system. > It should not be invoked manually. > More information: . diff --git a/tldr/osx/internetsharing b/tldr/osx/internetsharing index fc94b6ea..8105159a 100644 --- a/tldr/osx/internetsharing +++ b/tldr/osx/internetsharing @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # InternetSharing -> Sets up Internet Sharing. +> Set up Internet Sharing. > It should not be invoked manually. > More information: . diff --git a/tldr/osx/setfile b/tldr/osx/setfile index d6084c1c..76ce894c 100644 --- a/tldr/osx/setfile +++ b/tldr/osx/setfile @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # setfile -> Sets file attributes on files in an HFS+ directory. +> Set file attributes on files in an HFS+ directory. > More information: . - Set creation date for specific files: diff --git a/tldr/osx/watchlistd b/tldr/osx/watchlistd index 30b6b23f..c742bf5e 100644 --- a/tldr/osx/watchlistd +++ b/tldr/osx/watchlistd @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # watchlistd -> Manages the Apple TV app's watch list. +> Manage the Apple TV app's watch list. > It should not be invoked manually. > More information: . diff --git a/tldr/pipenv b/tldr/pipenv index f7db4288..a90e47be 100644 --- a/tldr/pipenv +++ b/tldr/pipenv @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pipenv > Simple and unified Python development workflow. -> Manages packages and the virtual environment for a project. +> Manage packages and the virtual environment for a project. > More information: . - Create a new project: diff --git a/tldr/salt-key b/tldr/salt-key index b1b2043e..1a248734 100644 --- a/tldr/salt-key +++ b/tldr/salt-key @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # salt-key -> Manages salt minion keys on the salt master. +> Manage salt minion keys on the salt master. > Needs to be run on the salt master, likely as root or with sudo. > More information: . diff --git a/tldr/tlmgr b/tldr/tlmgr index 7970f6d8..9094d6ca 100644 --- a/tldr/tlmgr +++ b/tldr/tlmgr @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # tlmgr -> Manages packages and configuration options of an existing TeX Live installation. +> Manage packages and configuration options of an existing TeX Live installation. > Some subcommands such as `tlmgr paper` have their own usage documentation. > More information: . diff --git a/tldr/trawl b/tldr/trawl index 96434b3d..7189f4bf 100644 --- a/tldr/trawl +++ b/tldr/trawl @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # trawl -> Prints out network interface information to the console, much like ifconfig/ipconfig/ip/ifdata. +> Print out network interface information to the console, much like ifconfig/ipconfig/ip/ifdata. > More information: . - Show column names: diff --git a/tldr/windows/date b/tldr/windows/date index 6883599c..f293123d 100644 --- a/tldr/windows/date +++ b/tldr/windows/date @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # date -> Displays or sets the system date. +> Display or set the system date. > More information: . - Display the current system date and prompt to enter a new date (leave empty to keep unchanged): diff --git a/tldr/windows/fsutil b/tldr/windows/fsutil index 81cae5e3..cd4fdb39 100644 --- a/tldr/windows/fsutil +++ b/tldr/windows/fsutil @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # fsutil -> Displays information about file system volumes. +> Display information about file system volumes. > More information: . - Display a list of volumes: diff --git a/tldr/windows/get-acl b/tldr/windows/get-acl index 9a77d436..751bdd98 100644 --- a/tldr/windows/get-acl +++ b/tldr/windows/get-acl @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # Get-Acl -> Gets the security descriptor for a resource, such as a file or registry key. +> Get the security descriptor for a resource, such as a file or registry key. > This command can only be used through PowerShell. > More information: . diff --git a/tldr/windows/get-date b/tldr/windows/get-date index e9271480..72b1c4a4 100644 --- a/tldr/windows/get-date +++ b/tldr/windows/get-date @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # Get-Date -> Gets the current date and time. +> Get the current date and time. > This command can only be used through PowerShell. > More information: . diff --git a/tldr/windows/mkdir b/tldr/windows/mkdir index aa04de70..8f13f3bf 100644 --- a/tldr/windows/mkdir +++ b/tldr/windows/mkdir @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # mkdir -> Creates a directory. +> Create a directory. > More information: . - Create a directory: diff --git a/tldr/windows/netstat b/tldr/windows/netstat index fbfca761..fe0079a9 100644 --- a/tldr/windows/netstat +++ b/tldr/windows/netstat @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # netstat -> Displays active TCP connections, ports on which the computer is listening, network adapter statistics, the IP routing table, IPv4 statistics and IPv6 statistics. +> Display active TCP connections, ports on which the computer is listening, network adapter statistics, the IP routing table, IPv4 statistics and IPv6 statistics. > More information: . - Display active TCP connections: diff --git a/tldr/windows/query b/tldr/windows/query index 6b811758..6a4cb5c0 100644 --- a/tldr/windows/query +++ b/tldr/windows/query @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # query -> Displays information about user sessions and process. +> Display information about user sessions and process. > More information: . - Display all user sessions: diff --git a/tldr/windows/setx b/tldr/windows/setx index f56dd006..07fe2742 100644 --- a/tldr/windows/setx +++ b/tldr/windows/setx @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # setx -> Sets persistent environment variables. +> Set persistent environment variables. > More information: . - Set an environment variable for the current user: