diff --git a/tldr/aapt b/tldr/aapt index 7e0e0da6..c499a114 100644 --- a/tldr/aapt +++ b/tldr/aapt @@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git - List files contained in an APK archive: -`aapt list {{path/to/app.apk}}` +`aapt list {{path/to/app}}.apk` - Display an app's metadata (version, permissions, etc.): -`aapt dump badging {{path/to/app.apk}}` +`aapt dump badging {{path/to/app}}.apk` - Create a new APK archive with files from the specified directory: -`aapt package -F {{path/to/app.apk}} {{path/to/directory}}` +`aapt package -F {{path/to/app}}.apk {{path/to/directory}}` diff --git a/tldr/ack b/tldr/ack index 6a2e28a6..8bd133f9 100644 --- a/tldr/ack +++ b/tldr/ack @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # ack > A search tool like `grep`, optimized for developers. -> See also: `rg`, which is much faster. +> See also: `rg`. > More information: . - Search for files containing a string or `regex` in the current directory recursively: diff --git a/tldr/adb b/tldr/adb index 211504f4..8a8b546c 100644 --- a/tldr/adb +++ b/tldr/adb @@ -23,7 +23,7 @@ source: https://github.com/tldr-pages/tldr.git - Push an Android application to an emulator/device: -`adb install -r {{path/to/file.apk}}` +`adb install -r {{path/to/file}}.apk` - Copy a file/directory from the target device: diff --git a/tldr/adb-install b/tldr/adb-install index 255e6326..bc82574a 100644 --- a/tldr/adb-install +++ b/tldr/adb-install @@ -10,24 +10,24 @@ source: https://github.com/tldr-pages/tldr.git - Push an Android application to an emulator/device: -`adb install {{path/to/file.apk}}` +`adb install {{path/to/file}}.apk` - Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`): -`adb -s {{serial_number}} install {{path/to/file.apk}}` +`adb -s {{serial_number}} install {{path/to/file}}.apk` - [r]einstall an existing app, keeping its data: -`adb install -r {{path/to/file.apk}}` +`adb install -r {{path/to/file}}.apk` - Push an Android application allowing version code [d]owngrade (debuggable packages only): -`adb install -d {{path/to/file.apk}}` +`adb install -d {{path/to/file}}.apk` - [g]rant all permissions listed in the app manifest: -`adb install -g {{path/to/file.apk}}` +`adb install -g {{path/to/file}}.apk` - Quickly update an installed package by only updating the parts of the APK that changed: -`adb install --fastdeploy {{path/to/file.apk}}` +`adb install --fastdeploy {{path/to/file}}.apk` diff --git a/tldr/adb-shell-pm b/tldr/adb-shell-pm index 0f2faf97..ca01d9e3 100644 --- a/tldr/adb-shell-pm +++ b/tldr/adb-shell-pm @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Install an app package from a given path: -`adb shell pm install /{{path/to/app.apk}}` +`adb shell pm install /{{path/to/app}}.apk` - Uninstall a package from the device: diff --git a/tldr/age b/tldr/age index 6df0400f..6325bf3d 100644 --- a/tldr/age +++ b/tldr/age @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # age > A simple, modern, and secure file encryption tool. -> See also: `age-keygen` for generating key pairs. +> See also: `age-keygen`. > More information: . - Generate an encrypted file that can be decrypted with a passphrase: diff --git a/tldr/age-keygen b/tldr/age-keygen index bc049e72..1a062ee4 100644 --- a/tldr/age-keygen +++ b/tldr/age-keygen @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # age-keygen > Generate `age` key pairs. -> See also: `age` for encrypting/decrypting files. +> See also: `age`. > More information: . - Generate a key pair, save it to an unencrypted file, and print the public key to `stdout`: diff --git a/tldr/androguard b/tldr/androguard index 63476383..e3d9e0de 100644 --- a/tldr/androguard +++ b/tldr/androguard @@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git - Display Android app manifest: -`androguard axml {{path/to/app.apk}}` +`androguard axml {{path/to/app}}.apk` - Display app metadata (version and app ID): -`androguard apkid {{path/to/app.apk}}` +`androguard apkid {{path/to/app}}.apk` - Decompile Java code from an app: -`androguard decompile {{path/to/app.apk}} --output {{path/to/directory}}` +`androguard decompile {{path/to/app}}.apk --output {{path/to/directory}}` diff --git a/tldr/apkleaks b/tldr/apkleaks index d712552d..dd489187 100644 --- a/tldr/apkleaks +++ b/tldr/apkleaks @@ -11,12 +11,12 @@ source: https://github.com/tldr-pages/tldr.git - Scan an APK file for URIs, endpoints, and secrets: -`apkleaks {{[-f|--file]}} {{path/to/file.apk}}` +`apkleaks {{[-f|--file]}} {{path/to/file}}.apk` - Scan and save the output to a specific file: -`apkleaks {{[-f|--file]}} {{path/to/file.apk}} {{[-o|--output]}} {{path/to/output.txt}}` +`apkleaks {{[-f|--file]}} {{path/to/file}}.apk {{[-o|--output]}} {{path/to/output.txt}}` - Pass `jadx` disassembler arguments: -`apkleaks {{[-f|--file]}} {{path/to/file.apk}} {{[-a|--args]}} "{{--threads-count 5 --deobf}}"` +`apkleaks {{[-f|--file]}} {{path/to/file}}.apk {{[-a|--args]}} "{{--threads-count 5 --deobf}}"` diff --git a/tldr/apktool b/tldr/apktool index 54b8bab5..96e04f16 100644 --- a/tldr/apktool +++ b/tldr/apktool @@ -10,7 +10,7 @@ source: https://github.com/tldr-pages/tldr.git - Decode an APK file: -`apktool d {{path/to/file.apk}}` +`apktool d {{path/to/file}}.apk` - Build an APK file from a directory: @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - Install and store a framework: -`apktool if {{path/to/framework.apk}}` +`apktool if {{path/to/framework}}.apk` diff --git a/tldr/aria2c b/tldr/aria2c index ff37d166..12f243c7 100644 --- a/tldr/aria2c +++ b/tldr/aria2c @@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git - Download multiple different files in parallel: -`aria2c {{[-Z|--force-sequential]}} {{false}} "{{url1 url2 ...}}"` +`aria2c {{[-Z|--force-sequential=true]}} {{"url1" "url2" ...}}` - Download the same file from different mirrors and verify the checksum of the downloaded file: diff --git a/tldr/b2sum b/tldr/b2sum index caf47c19..6f112691 100644 --- a/tldr/b2sum +++ b/tldr/b2sum @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Calculate and save the list of BLAKE2 checksums to a file: -`b2sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.b2}}` +`b2sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file}}.b2` - Calculate a BLAKE2 checksum from `stdin`: @@ -22,15 +22,15 @@ source: https://github.com/tldr-pages/tldr.git - Read a file of BLAKE2 checksums and filenames and verify all files have matching checksums: -`b2sum {{[-c|--check]}} {{path/to/file.b2}}` +`b2sum {{[-c|--check]}} {{path/to/file}}.b2` - Only show a message for missing files or when verification fails: -`b2sum {{[-c|--check]}} --quiet {{path/to/file.b2}}` +`b2sum {{[-c|--check]}} --quiet {{path/to/file}}.b2` - Only show a message when verification fails, ignoring missing files: -`b2sum --ignore-missing {{[-c|--check]}} --quiet {{path/to/file.b2}}` +`b2sum --ignore-missing {{[-c|--check]}} --quiet {{path/to/file}}.b2` - Check a known BLAKE2 checksum of a file: diff --git a/tldr/bash b/tldr/bash index 3f9e4069..5399ff7c 100644 --- a/tldr/bash +++ b/tldr/bash @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # bash > Bourne-Again SHell, an `sh`-compatible command-line interpreter. -> See also: `zsh`, `!` (history expansion). +> See also: `zsh`, `!`. > More information: . - Start an interactive shell session: diff --git a/tldr/clifm b/tldr/clifm index f0731c59..700e3099 100644 --- a/tldr/clifm +++ b/tldr/clifm @@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git - Create a new file and a new directory: -`file dir/` +`{{file}} {{dir}}/` - Search for PDF files in the current directory: @@ -33,10 +33,10 @@ source: https://github.com/tldr-pages/tldr.git `sel` -- Display help: - -`` - - Exit CliFM: `` + +- Display help: + +`` diff --git a/tldr/conda-activate b/tldr/conda-activate index 1f0ce371..03b356e1 100644 --- a/tldr/conda-activate +++ b/tldr/conda-activate @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # conda activate > Activate a conda environment. -> See also: `conda deactivate` to deactivate a conda environment. +> See also: `conda deactivate`. > More information: . - Activate an existing environment named `myenv`: diff --git a/tldr/cut b/tldr/cut index 5d6223a8..d03d0e78 100644 --- a/tldr/cut +++ b/tldr/cut @@ -28,6 +28,10 @@ source: https://github.com/tldr-pages/tldr.git `{{command}} | cut {{[-d|--delimiter]}} " " {{[-f|--fields]}} -3` +- Do not print lines that do not contain the delimiter: + +`{{command}} | cut {{[-d|--delimiter]}} "{{:}}" {{[-f|--fields]}} {{1}} {{[-s|--only-delimited]}}` + - Print specific fields of lines that use `NUL` to terminate lines instead of newlines: `{{find . -print0}} | cut {{[-z|--zero-terminated]}} {{[-d|--delimiter]}} "{{/}}" {{[-f|--fields]}} {{2}}` diff --git a/tldr/dexdump b/tldr/dexdump index 160762cc..73544fc3 100644 --- a/tldr/dexdump +++ b/tldr/dexdump @@ -10,16 +10,16 @@ source: https://github.com/tldr-pages/tldr.git - Extract classes and methods from an APK file: -`dexdump {{path/to/file.apk}}` +`dexdump {{path/to/file}}.apk` - Display header information of DEX files contained in an APK file: -`dexdump -f {{path/to/file.apk}}` +`dexdump -f {{path/to/file}}.apk` - Display the dis-assembled output of executable sections: -`dexdump -d {{path/to/file.apk}}` +`dexdump -d {{path/to/file}}.apk` - Output results to a file: -`dexdump -o {{path/to/file}} {{path/to/file.apk}}` +`dexdump -o {{path/to/file}} {{path/to/file}}.apk` diff --git a/tldr/disown b/tldr/disown index c8eb1199..3f3e322f 100644 --- a/tldr/disown +++ b/tldr/disown @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # disown > Allow sub-processes to live beyond the shell that they are attached to. -> See also: `jobs` for finding job numbers. +> See also: `jobs`. > More information: . - Disown the current job: diff --git a/tldr/dmypy b/tldr/dmypy index 2f42f63b..06a6ba1e 100644 --- a/tldr/dmypy +++ b/tldr/dmypy @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # dmypy > Type check Python code, running `mypy` as a daemon for better speed. -> See also: `mypy` for more options to use with check and run. +> See also: `mypy`. > More information: . - Type check a file, and start the daemon if it is not running: diff --git a/tldr/docker-container-commit b/tldr/docker-container-commit index 6806395b..f420b768 100644 --- a/tldr/docker-container-commit +++ b/tldr/docker-container-commit @@ -30,7 +30,7 @@ source: https://github.com/tldr-pages/tldr.git - Create an image without pausing the container during commit: -`docker {{[commit|container commit]}} {{[-p|--pause]}} {{false}} {{container}} {{image}}:{{tag}}` +`docker {{[commit|container commit]}} {{[-p|--pause]}} false {{container}} {{image}}:{{tag}}` - Display help: diff --git a/tldr/docker-container-logs b/tldr/docker-container-logs index dafdbc38..7e55cfbb 100644 --- a/tldr/docker-container-logs +++ b/tldr/docker-container-logs @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Print last 5 lines: -`docker {{[logs|container logs]}} {{container_name}} {{[-n|--tail]}} {{5}}` +`docker {{[logs|container logs]}} {{container_name}} {{[-n|--tail]}} 5` - Print logs and append them with timestamps: diff --git a/tldr/docker-container-update b/tldr/docker-container-update index cc532bda..65b44c9a 100644 --- a/tldr/docker-container-update +++ b/tldr/docker-container-update @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # docker container update > Update configuration of Docker containers. -> This command is not supported for Windows containers. +> Note: This command is not supported for Windows containers. > More information: . - Update restart policy to apply when a specific container exits: diff --git a/tldr/docker-image-ls b/tldr/docker-image-ls index 1dbfc2a6..582c2be5 100644 --- a/tldr/docker-image-ls +++ b/tldr/docker-image-ls @@ -5,29 +5,29 @@ source: https://github.com/tldr-pages/tldr.git --- # docker image ls -> Manage Docker images. +> List Docker images. > More information: . - List all Docker images: -`docker image ls` +`docker {{[images|image ls]}}` - List all Docker images including intermediates: -`docker image ls {{[-a|--all]}}` +`docker {{[images|image ls]}} {{[-a|--all]}}` - List the output in quiet mode (only numeric IDs): -`docker image ls {{[-q|--quiet]}}` +`docker {{[images|image ls]}} {{[-q|--quiet]}}` - List all Docker images not used by any container: -`docker image ls {{[-f|--filter]}} dangling=true` +`docker {{[images|image ls]}} {{[-f|--filter]}} dangling=true` - List images that contain a substring in their name: -`docker image ls "{{*name*}}"` +`docker {{[images|image ls]}} "{{*name*}}"` - Sort images by size: -`docker image ls --format "\{\{.ID\}\} \{\{.Size\}\} \{\{.Repository\}\}:\{\{.Tag\}\}" | sort {{[-k|--key]}} 2 {{[-h|--human-numeric-sort]}}` +`docker {{[images|image ls]}} --format "\{\{.ID\}\} \{\{.Size\}\} \{\{.Repository\}\}:\{\{.Tag\}\}" | sort {{[-k|--key]}} 2 {{[-h|--human-numeric-sort]}}` diff --git a/tldr/docker-image-pull b/tldr/docker-image-pull index 6cfc48b1..514f215a 100644 --- a/tldr/docker-image-pull +++ b/tldr/docker-image-pull @@ -20,7 +20,7 @@ source: https://github.com/tldr-pages/tldr.git `docker {{[pull|image pull]}} {{[-a|--all-tags]}} {{image}}` -- Download a Docker images for a specific platform, e.g. linux/amd64: +- Download a Docker images for a specific platform: `docker {{[pull|image pull]}} --platform {{linux/amd64}} {{image}}:{{tag}}` diff --git a/tldr/encfs b/tldr/encfs index 46227932..56d33671 100644 --- a/tldr/encfs +++ b/tldr/encfs @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # encfs > Mount or create encrypted virtual filesystems. -> See also: `fusermount` which can unmount filesystems mounted by this command. +> See also: `fusermount`. > More information: . - Initialize or mount an encrypted filesystem: diff --git a/tldr/gcloud-help b/tldr/gcloud-help index 7b33edfa..e8cb4d34 100644 --- a/tldr/gcloud-help +++ b/tldr/gcloud-help @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # gcloud help > Display help and reference information for `gcloud`. -> See also: `gcloud topic` for supplementary help topics not directly associated with individual commands. +> See also: `gcloud topic`. > More information: . - Search the `gcloud` CLI reference documents for specific terms: diff --git a/tldr/gcloud-topic b/tldr/gcloud-topic index 28db9bec..edd41b40 100644 --- a/tldr/gcloud-topic +++ b/tldr/gcloud-topic @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # gcloud topic > Display supplementary help for topics not directly associated with individual commands. -> See also: `gcloud help` for general help. +> See also: `gcloud help`. > More information: . - View supplementary help material for non-command topics like accessibility, filtering, and formatting: diff --git a/tldr/git-abort b/tldr/git-abort index 5d7d79df..bdb36ddb 100644 --- a/tldr/git-abort +++ b/tldr/git-abort @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Abort an ongoing rebase, merge, or cherry-pick. > Part of `git-extras`. -> More information: . +> More information: . - Abort a Git rebase, merge, or cherry-pick: diff --git a/tldr/git-alias b/tldr/git-alias index 8a5de36e..ef8ab6a4 100644 --- a/tldr/git-alias +++ b/tldr/git-alias @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create shortcuts for Git commands. > Part of `git-extras`. -> More information: . +> More information: . - List all aliases: diff --git a/tldr/git-am b/tldr/git-am index ced3b43d..00871f37 100644 --- a/tldr/git-am +++ b/tldr/git-am @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # git am > Apply patch files and create a commit. Useful when receiving commits via email. -> See also: `git format-patch` which can generate patch files. +> See also: `git format-patch`. > More information: . - Apply and commit changes following a local patch file: diff --git a/tldr/git-apply b/tldr/git-apply index 6a5fecee..04de52d5 100644 --- a/tldr/git-apply +++ b/tldr/git-apply @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # git apply > Apply a patch to files and/or to the index without creating a commit. -> See also: `git am` which applies a patch and also creates a commit. +> See also: `git am`. > More information: . - Print messages about the patched files: diff --git a/tldr/git-archive-file b/tldr/git-archive-file index 203648af..6021b1ec 100644 --- a/tldr/git-archive-file +++ b/tldr/git-archive-file @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Export all the files of the current Git branch into a Zip archive. > Part of `git-extras`. -> More information: . +> More information: . - Pack the currently checked out commit into a Zip archive: diff --git a/tldr/git-browse b/tldr/git-browse index d4bd183a..4e6f3cbc 100644 --- a/tldr/git-browse +++ b/tldr/git-browse @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > View an upstream repository in the default browser. > Part of `git-extras`. -> More information: . +> More information: . - Open the first upstream in the default browser: diff --git a/tldr/git-browse-ci b/tldr/git-browse-ci index 63c1eb64..bd80a48a 100644 --- a/tldr/git-browse-ci +++ b/tldr/git-browse-ci @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Open the current Git repository's CI website in the default web browser. > Part of `git-extras`. -> More information: . +> More information: . - Open the current repository's CI configuration on its upstream website: diff --git a/tldr/git-brv b/tldr/git-brv index 4f0c8062..f5b5ef28 100644 --- a/tldr/git-brv +++ b/tldr/git-brv @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Print a list of branches, sorted by last commit date. > Part of `git-extras`. -> More information: . +> More information: . - List each branch showing date, latest commit hash, and message: diff --git a/tldr/git-bulk b/tldr/git-bulk index dd4dc829..59da456a 100644 --- a/tldr/git-bulk +++ b/tldr/git-bulk @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Execute operations on multiple Git repositories. > Part of `git-extras`. -> More information: . +> More information: . - Register the current directory as a workspace: diff --git a/tldr/git-changelog b/tldr/git-changelog index 9033742b..9f3d83f2 100644 --- a/tldr/git-changelog +++ b/tldr/git-changelog @@ -19,19 +19,19 @@ source: https://github.com/tldr-pages/tldr.git - List a range of commits from the tag named `2.1.0` to now: -`git changelog {{[-l|--list]}} {{[-s|--start-tag]}} {{2.1.0}}` +`git changelog {{[-l|--list]}} {{[-s|--start-tag]}} 2.1.0` - List pretty formatted range of commits between the tag `0.5.0` and the tag `1.0.0`: -`git changelog {{[-s|--start-tag]}} {{0.5.0}} {{[-f|--final-tag]}} {{1.0.0}}` +`git changelog {{[-s|--start-tag]}} 0.5.0 {{[-f|--final-tag]}} 1.0.0` - List pretty formatted range of commits between the commit `0b97430` and the tag `1.0.0`: -`git changelog --start-commit {{0b97430}} {{[-f|--final-tag]}} {{1.0.0}}` +`git changelog --start-commit 0b97430 {{[-f|--final-tag]}} 1.0.0` - Specify `CHANGELOG.md` as the output file: -`git changelog {{CHANGELOG.md}}` +`git changelog CHANGELOG.md` - Replace contents of current changelog file entirely: diff --git a/tldr/git-clear b/tldr/git-clear index 51032195..8e7b72d1 100644 --- a/tldr/git-clear +++ b/tldr/git-clear @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Clear a Git working directory as if it was freshly cloned with the current branch including files in `.gitignore`. > Part of `git-extras`. -> More information: . +> More information: . - Reset all tracked files and delete all untracked files even if they are included in the `.gitignore`: diff --git a/tldr/git-clear-soft b/tldr/git-clear-soft index 1653219e..1f78abcb 100644 --- a/tldr/git-clear-soft +++ b/tldr/git-clear-soft @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Clear a Git working directory as if it was freshly cloned with the current branch excluding files in `.gitignore`. > Part of `git-extras`. -> More information: . +> More information: . - Reset all tracked files and delete all untracked files: diff --git a/tldr/git-coauthor b/tldr/git-coauthor index ccfab47e..0c26988b 100644 --- a/tldr/git-coauthor +++ b/tldr/git-coauthor @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Add another author to the latest commit. Since this command rewrites the Git history, `--force` will be needed when pushing next time. > Part of `git-extras`. -> More information: . +> More information: . - Insert an additional author to the last Git commit: diff --git a/tldr/git-commits-since b/tldr/git-commits-since index e797ff59..70879e26 100644 --- a/tldr/git-commits-since +++ b/tldr/git-commits-since @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Display commits since a time or date. > Part of `git-extras`. -> More information: . +> More information: . - Display commits since yesterday: diff --git a/tldr/git-continue b/tldr/git-continue new file mode 100644 index 00000000..733e5063 --- /dev/null +++ b/tldr/git-continue @@ -0,0 +1,12 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# git continue + +> This command is an alias of `git abort`. + +- View documentation for the original command: + +`tldr git abort` diff --git a/tldr/git-contrib b/tldr/git-contrib index 938abd41..2c583dc2 100644 --- a/tldr/git-contrib +++ b/tldr/git-contrib @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Display commits from an author. > Part of `git-extras`. -> More information: . +> More information: . - Display all commit hashes and their corresponding commit messages from a specific author: diff --git a/tldr/git-count b/tldr/git-count index 36c388dd..264c3633 100644 --- a/tldr/git-count +++ b/tldr/git-count @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Print the total number of commits. > Part of `git-extras`. -> More information: . +> More information: . - Print the total number of commits: diff --git a/tldr/git-cp b/tldr/git-cp index bd7c26e9..ea07eb8d 100644 --- a/tldr/git-cp +++ b/tldr/git-cp @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Copy an existing file to a new location, preserving history. > Part of `git-extras`. -> More information: . +> More information: . - Copy an existing file in a Git repo, staying in the same directory: diff --git a/tldr/git-delete-branch b/tldr/git-delete-branch index 00bf6eea..d6ef01d0 100644 --- a/tldr/git-delete-branch +++ b/tldr/git-delete-branch @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Delete local and remote Git branches. > Part of `git-extras`. If deleting the checked out branch, only the remote branch will be deleted. -> More information: . +> More information: . - Delete one or more local and remote Git branches: diff --git a/tldr/git-delete-merged-branches b/tldr/git-delete-merged-branches index 0ed0618a..121e6f72 100644 --- a/tldr/git-delete-merged-branches +++ b/tldr/git-delete-merged-branches @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Delete branches that are listed in `git branch --merged` excluding master. > Part of `git-extras`. -> More information: . +> More information: . - Delete merged branches: diff --git a/tldr/git-delete-squashed-branches b/tldr/git-delete-squashed-branches index c10ad451..83e79127 100644 --- a/tldr/git-delete-squashed-branches +++ b/tldr/git-delete-squashed-branches @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Delete branches that have been "squashed-merged" into a specified branch and checkout. If no branch is specified, default to the currently checked out branch. > Part of `git-extras`. -> More information: . +> More information: . - Delete all branches that were "squash-merged" into the current checked out branch: diff --git a/tldr/git-delete-submodule b/tldr/git-delete-submodule index 69671775..87eed61e 100644 --- a/tldr/git-delete-submodule +++ b/tldr/git-delete-submodule @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Delete a submodule from a Git repository. > Part of `git-extras`. -> More information: . +> More information: . - Delete a specific submodule: diff --git a/tldr/git-delete-tag b/tldr/git-delete-tag index 50536787..70cddd8d 100644 --- a/tldr/git-delete-tag +++ b/tldr/git-delete-tag @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Delete existing local and remote tags. > Part of `git-extras`. -> More information: . +> More information: . - Delete a tag: diff --git a/tldr/git-delta b/tldr/git-delta index 948748a7..20c10162 100644 --- a/tldr/git-delta +++ b/tldr/git-delta @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > List files that differ from another branch. > Part of `git-extras`. -> More information: . +> More information: . - List files from the current checked out branch that differ from the `main` branch: diff --git a/tldr/git-effort b/tldr/git-effort index 33ac24b5..72454e65 100644 --- a/tldr/git-effort +++ b/tldr/git-effort @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Display how much activity a file has had, showing commits per file and "active days" i.e. total number of days that contributed to the file. > Part of `git-extras`. -> More information: . +> More information: . - Display each file in the repository, showing commits and active days: diff --git a/tldr/git-force-clone b/tldr/git-force-clone index 940c9ba7..28bd810f 100644 --- a/tldr/git-force-clone +++ b/tldr/git-force-clone @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Get the basic functionality of `git clone`, but if the destination Git repository already exists it will force-reset it to resemble a clone of the remote. > Part of `git-extras`. -> More information: . +> More information: . - Clone a Git repository into a new directory: diff --git a/tldr/git-fork b/tldr/git-fork index ba1efe45..700916e3 100644 --- a/tldr/git-fork +++ b/tldr/git-fork @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Fork a GitHub repo. Like `git clone` but forks first. > Part of `git-extras`. -> More information: . +> More information: . - Fork and clone a GitHub repository by its URL: diff --git a/tldr/git-fresh-branch b/tldr/git-fresh-branch index 6f678d31..6864228b 100644 --- a/tldr/git-fresh-branch +++ b/tldr/git-fresh-branch @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create an empty local branch. > Part of `git-extras`. -> More information: . +> More information: . - Create an empty local branch: diff --git a/tldr/git-fsck b/tldr/git-fsck index 4f3da35e..7aa8dbb0 100644 --- a/tldr/git-fsck +++ b/tldr/git-fsck @@ -6,8 +6,8 @@ source: https://github.com/tldr-pages/tldr.git # git fsck > Verify the validity and connectivity of nodes in a Git repository index. -> Does not make any modifications. -> See also: `git gc` for cleaning up dangling blobs. +> Note: Does not make any modifications. +> See also: `git gc`. > More information: . - Check the current repository: diff --git a/tldr/git-gh-pages b/tldr/git-gh-pages index df781d92..48f54cd9 100644 --- a/tldr/git-gh-pages +++ b/tldr/git-gh-pages @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create a new branch inside the current repository called `gh-pages`. > Part of `git-extras`. -> More information: . +> More information: . - Create the GitHub pages branch inside the repository in the current directory: diff --git a/tldr/git-graft b/tldr/git-graft index 1f9b2a0c..457870ce 100644 --- a/tldr/git-graft +++ b/tldr/git-graft @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Merge commits from a branch into another branch and delete the source branch. > Part of `git-extras`. -> More information: . +> More information: . - Merge all commits not present on the target branch from the source branch to target branch, and delete the source branch: diff --git a/tldr/git-ignore b/tldr/git-ignore index d7905f3d..fe594038 100644 --- a/tldr/git-ignore +++ b/tldr/git-ignore @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Show/update `.gitignore` files. > Part of `git-extras`. > See also: `git ignore-io`. -> More information: . +> More information: . - Show the content of all global and local `.gitignore` files: diff --git a/tldr/git-ignore-io b/tldr/git-ignore-io index 236ef178..03b7f464 100644 --- a/tldr/git-ignore-io +++ b/tldr/git-ignore-io @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # git ignore-io > Generate `.gitignore` files from predefined templates. -> More information: . +> More information: . - List available templates: diff --git a/tldr/git-local-commits b/tldr/git-local-commits index 4724a641..1101d880 100644 --- a/tldr/git-local-commits +++ b/tldr/git-local-commits @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Show local commits that haven't been pushed to origin. Any additional arguments will be passed directly to `git log`. > Part of `git-extras`. -> More information: . +> More information: . - Show commits that haven't been pushed: diff --git a/tldr/git-lock b/tldr/git-lock index 43b046d6..77b0a63f 100644 --- a/tldr/git-lock +++ b/tldr/git-lock @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Lock a file in a Git repository from being modified by a commit. > Part of `git-extras`. > See also: `git-unlock`. -> More information: . +> More information: . - Disable the ability to commit changes of a local file: diff --git a/tldr/git-locked b/tldr/git-locked index fb34b2ce..a010a182 100644 --- a/tldr/git-locked +++ b/tldr/git-locked @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > List locked files in a Git repository. > Part of `git-extras`. -> More information: . +> More information: . - List all local locked files: diff --git a/tldr/git-merge-into b/tldr/git-merge-into index 3801f8da..aab82124 100644 --- a/tldr/git-merge-into +++ b/tldr/git-merge-into @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Merge one branch into another branch. > Part of `git-extras`. -> More information: . +> More information: . - Merge a source branch into a specific destination branch: diff --git a/tldr/git-merge-repo b/tldr/git-merge-repo index a19c52b3..13c2cd67 100644 --- a/tldr/git-merge-repo +++ b/tldr/git-merge-repo @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Merge two repository histories. > Part of `git-extras`. -> More information: . +> More information: . - Merge a repository's branch into the current repository's directory: diff --git a/tldr/git-missing b/tldr/git-missing index 5f8d16eb..563b3165 100644 --- a/tldr/git-missing +++ b/tldr/git-missing @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Show commits which aren't shared between two branches. > Part of `git-extras`. -> More information: . +> More information: . - Show commits which aren't shared between the currently checked-out branch and another branch: diff --git a/tldr/git-mr b/tldr/git-mr index 5eb9381c..a6bfca00 100644 --- a/tldr/git-mr +++ b/tldr/git-mr @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Check out GitLab merge requests locally. > Part of `git-extras`. -> More information: . +> More information: . - Check out a specific merge request: diff --git a/tldr/git-obliterate b/tldr/git-obliterate index d32d759a..502a7914 100644 --- a/tldr/git-obliterate +++ b/tldr/git-obliterate @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Delete files and erase their history from a Git repository. > Part of `git-extras`. -> More information: . +> More information: . - Erase the existence of specific files: diff --git a/tldr/git-paste b/tldr/git-paste index f3aa93dd..f58412f9 100644 --- a/tldr/git-paste +++ b/tldr/git-paste @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Send commits to a pastebin site using `pastebinit`. > Part of `git-extras`. -> More information: . +> More information: . - Send the patches between the current branch and its upstream to a pastebin using `pastebinit`: diff --git a/tldr/git-pr b/tldr/git-pr index eb519fba..1712cd6d 100644 --- a/tldr/git-pr +++ b/tldr/git-pr @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Check out GitHub pull requests locally. > Part of `git-extras`. -> More information: . +> More information: . - Check out a specific pull request: diff --git a/tldr/git-pull-request b/tldr/git-pull-request index e280ebe7..b636e54a 100644 --- a/tldr/git-pull-request +++ b/tldr/git-pull-request @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create a pull request for a project on GitHub. > Part of `git-extras`. -> More information: . +> More information: . - Create a pull request for a project on GitHub: diff --git a/tldr/git-reauthor b/tldr/git-reauthor index 3062e1ed..082b60a5 100644 --- a/tldr/git-reauthor +++ b/tldr/git-reauthor @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Change details about an author identity. Since this command rewrites the Git history, `--force` will be needed when pushing next time. > Part of `git-extras`. -> More information: . +> More information: . - Change an author's email and name across the whole Git repository: diff --git a/tldr/git-rebase-patch b/tldr/git-rebase-patch index a541032a..29b97618 100644 --- a/tldr/git-rebase-patch +++ b/tldr/git-rebase-patch @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Find the commit the patch applies to and do a rebase. > Part of `git-extras`. -> More information: . +> More information: . - Find the commit the patch applies to and do a rebase: diff --git a/tldr/git-rename-branch b/tldr/git-rename-branch index 3b611e5c..4dd9f75d 100644 --- a/tldr/git-rename-branch +++ b/tldr/git-rename-branch @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Rename a Git branch. > Part of `git-extras`. -> More information: . +> More information: . - Rename the branch you are currently on: diff --git a/tldr/git-rename-remote b/tldr/git-rename-remote index 7d09a64a..5c71fa1a 100644 --- a/tldr/git-rename-remote +++ b/tldr/git-rename-remote @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Change remote for pulling and pushing. > Part of `git-extras`. -> More information: . +> More information: . - Change the upstream remote to origin: diff --git a/tldr/git-rename-tag b/tldr/git-rename-tag index 1f54bba2..14eb8a9a 100644 --- a/tldr/git-rename-tag +++ b/tldr/git-rename-tag @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Rename a Git tag. > Part of `git-extras`. -> More information: . +> More information: . - Rename an existing Git tag locally and remotely: diff --git a/tldr/git-repl b/tldr/git-repl index a0632888..479a8456 100644 --- a/tldr/git-repl +++ b/tldr/git-repl @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Git REPL (read-evaluate-print-loop) - an interactive Git shell. > Part of `git-extras`. -> More information: . +> More information: . - Start an interactive Git shell: diff --git a/tldr/git-reset-file b/tldr/git-reset-file index e9b8ffdf..4b486201 100644 --- a/tldr/git-reset-file +++ b/tldr/git-reset-file @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Revert a file to `HEAD` or a commit. > Part of `git-extras`. -> More information: . +> More information: . - Reset a file to `HEAD`: diff --git a/tldr/git-root b/tldr/git-root index 8a86ff21..301b7baf 100644 --- a/tldr/git-root +++ b/tldr/git-root @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Print the root directory of the current Git repository. > Part of `git-extras`. -> More information: . +> More information: . - Print the absolute path of the current Git repository: diff --git a/tldr/git-rscp b/tldr/git-rscp index 73f977c2..8fd297d0 100644 --- a/tldr/git-rscp +++ b/tldr/git-rscp @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Reverse `git scp` - copy files from the working directory of a remote repository to the current working tree. > Part of `git-extras`. -> More information: . +> More information: . - Copy specific files from a remote: diff --git a/tldr/git-scp b/tldr/git-scp index 3babb5b6..8c4e60d5 100644 --- a/tldr/git-scp +++ b/tldr/git-scp @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Copy files from the current working tree to the working directory of a remote repository. > Part of `git-extras`. Uses `rsync` to transfer files. -> More information: . +> More information: . - Copy unstaged files to a specific remote: diff --git a/tldr/git-setup b/tldr/git-setup index 5bbe1031..5a9cab9b 100644 --- a/tldr/git-setup +++ b/tldr/git-setup @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create a Git repository in a directory and commit all files. > Part of `git-extras`. -> More information: . +> More information: . - Create a Git repository in the current directory and commit all files: diff --git a/tldr/git-show-merged-branches b/tldr/git-show-merged-branches index 5b8eadb7..953d3911 100644 --- a/tldr/git-show-merged-branches +++ b/tldr/git-show-merged-branches @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # git show-merged-branches > Print all branches which are merged into the current head. -> More information: . +> More information: . - Print all branches which are merged into the current head: diff --git a/tldr/git-show-tree b/tldr/git-show-tree index 328c8a50..08dff47b 100644 --- a/tldr/git-show-tree +++ b/tldr/git-show-tree @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Show a decorated tree graph with all branches of a Git repository, showing annotations. > Part of `git-extras`. -> More information: . +> More information: . - Show a decorated tree graph for all branches annotated with tags and branch names: diff --git a/tldr/git-show-unmerged-branches b/tldr/git-show-unmerged-branches index 49226a8b..0aa5e954 100644 --- a/tldr/git-show-unmerged-branches +++ b/tldr/git-show-unmerged-branches @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # git show-unmerged-branches > Print all branches which are not merged into the current `HEAD`. -> More information: . +> More information: . - Print all branches which are not merged into the current `HEAD`: diff --git a/tldr/git-touch b/tldr/git-touch index 2feb5916..b9c83085 100644 --- a/tldr/git-touch +++ b/tldr/git-touch @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create new files and add them to the index. > Part of `git-extras`. -> More information: . +> More information: . - Create new files and add them to the index: diff --git a/tldr/git-undo b/tldr/git-undo index d0f8a268..066745d9 100644 --- a/tldr/git-undo +++ b/tldr/git-undo @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Undo recent commits. > Part of `git-extras`. -> More information: . +> More information: . - Remove the most recent commit: diff --git a/tldr/git-unlock b/tldr/git-unlock index 61557fae..aa758ee4 100644 --- a/tldr/git-unlock +++ b/tldr/git-unlock @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Unlock a file in a Git repository so it can be modified by a commit. > Part of `git-extras`. > See also: `git lock`. -> More information: . +> More information: . - Enable the ability to commit changes of a previously-locked local file: diff --git a/tldr/git-utimes b/tldr/git-utimes index c4f3675c..fc9252e6 100644 --- a/tldr/git-utimes +++ b/tldr/git-utimes @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Change files modification time to their last commit date. Does not touch files that are in the working tree or index. > Part of `git-extras`. -> More information: . +> More information: . - Change all files modification time to their last commit date: diff --git a/tldr/godot b/tldr/godot index 0babda66..6ecd1b57 100644 --- a/tldr/godot +++ b/tldr/godot @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # godot > An open source 2D and 3D game engine. -> More information: . +> More information: . - Run a project if the current directory contains a `project.godot` file, otherwise open the project manager: diff --git a/tldr/hledger b/tldr/hledger index 23b95dea..315f44ce 100644 --- a/tldr/hledger +++ b/tldr/hledger @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hledger > A robust, friendly plain text accounting app. -> See also: `hledger-ui` for TUI, `hledger-web` for web interface. +> See also: `hledger-ui`, `hledger-web`. > More information: . - Record new transactions interactively, saving to the default journal file: diff --git a/tldr/httpie b/tldr/httpie index 1be9d50a..198ed847 100644 --- a/tldr/httpie +++ b/tldr/httpie @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # httpie > Management interface for HTTPie. -> See also: `http`, the tool itself. +> See also: `http`. > More information: . - Check updates for `http`: diff --git a/tldr/kube-fzf b/tldr/kube-fzf index 4b2b9122..502fbcb2 100644 --- a/tldr/kube-fzf +++ b/tldr/kube-fzf @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # kube-fzf > Shell commands for command-line fuzzy searching of Kubernetes Pods. -> See also: `kubectl` for related commands. +> See also: `kubectl`. > More information: . - Get pod details (from current namespace): diff --git a/tldr/lambo b/tldr/lambo index a42a106c..2ed76662 100644 --- a/tldr/lambo +++ b/tldr/lambo @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # lambo > A super-powered `laravel new` for Laravel and Valet. -> See also: `lambo new` for additional command flags. +> See also: `lambo new`. > More information: . - Create a new Laravel application: diff --git a/tldr/linux/bspwm b/tldr/linux/bspwm index 8d1d8382..960e6e91 100644 --- a/tldr/linux/bspwm +++ b/tldr/linux/bspwm @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # bspwm > A tiling window manager based on binary space partitioning. -> See also: `bspc` for controlling it. +> See also: `bspc`. > More information: . - Start `bspwm` (note that a pre-existing window manager must not be open when this command is run): diff --git a/tldr/linux/compsize b/tldr/linux/compsize index 76f16729..7ab1451a 100644 --- a/tldr/linux/compsize +++ b/tldr/linux/compsize @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # compsize > Calculate the compression ratio of a set of files on a btrfs filesystem. -> See also: `btrfs filesystem` for recompressing a file by defragmenting it. +> See also: `btrfs filesystem`. > More information: . - Calculate the current compression ratio for a file or directory: diff --git a/tldr/linux/extundelete b/tldr/linux/extundelete index cbc2f485..75c43ded 100644 --- a/tldr/linux/extundelete +++ b/tldr/linux/extundelete @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # extundelete > Recover deleted files from ext3 or ext4 partitions by parsing the journal. -> See also: `date` for Unix time information and `umount` for unmounting partitions. +> See also: `date`, `umount`. > More information: . - Restore all deleted files inside partition `N` on device `X`: diff --git a/tldr/linux/insmod b/tldr/linux/insmod index e16f9bcd..3b3be02c 100644 --- a/tldr/linux/insmod +++ b/tldr/linux/insmod @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # insmod > Dynamically load modules into the Linux Kernel. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - Insert a kernel module into the Linux kernel: diff --git a/tldr/linux/ipcs b/tldr/linux/ipcs index d141735c..fcd0288a 100644 --- a/tldr/linux/ipcs +++ b/tldr/linux/ipcs @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # ipcs > Show information about the usage of System V IPC facilities: shared memory segments, message queues, and semaphore arrays. -> See also: `lsipc` for a more flexible tool, `ipcmk` for creating IPC facilities, and `ipcrm` for deleting them. +> See also: `lsipc`, `ipcmk`, `ipcrm`. > More information: . - Show information about all active IPC facilities: diff --git a/tldr/linux/lid.idutils b/tldr/linux/lid.idutils index 4ba2f27a..438e7ecb 100644 --- a/tldr/linux/lid.idutils +++ b/tldr/linux/lid.idutils @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Query an ID database for tokens matching a pattern. > Note: An ID database must first be built using `mkid`. -> More information: . +> More information: . - List all tokens and their file locations in the ID database: diff --git a/tldr/linux/lsipc b/tldr/linux/lsipc index 35967ffe..5720b231 100644 --- a/tldr/linux/lsipc +++ b/tldr/linux/lsipc @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # lsipc > Show information on System V IPC facilities currently employed in the system. -> See also: `ipcs` for the older tool. +> See also: `ipcs`. > More information: . - Show information about all active IPC facilities: diff --git a/tldr/linux/lsmod b/tldr/linux/lsmod index 22ed246b..68373522 100644 --- a/tldr/linux/lsmod +++ b/tldr/linux/lsmod @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # lsmod > Show the status of Linux kernel modules. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - List all currently loaded kernel modules: diff --git a/tldr/linux/mkid b/tldr/linux/mkid index 6a076a27..61d3d01e 100644 --- a/tldr/linux/mkid +++ b/tldr/linux/mkid @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # mkid > Build an ID database for use with `lid` and other idutils tools. -> More information: . +> More information: . - Build an ID database for the current directory: diff --git a/tldr/linux/modinfo b/tldr/linux/modinfo index 373c5749..f30f8997 100644 --- a/tldr/linux/modinfo +++ b/tldr/linux/modinfo @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # modinfo > Extract information about a Linux kernel module. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - List all attributes of a kernel module: diff --git a/tldr/linux/modprobe b/tldr/linux/modprobe index 73d82714..dcea61a5 100644 --- a/tldr/linux/modprobe +++ b/tldr/linux/modprobe @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # modprobe > Add or remove modules from the Linux kernel. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - Pretend to load a module into the kernel, but don't actually do it: diff --git a/tldr/linux/mount.ddi b/tldr/linux/mount.ddi index 368be56b..18b8ad1b 100644 --- a/tldr/linux/mount.ddi +++ b/tldr/linux/mount.ddi @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # mount.ddi > Mount Discoverable Disk Images. -> See also: `systemd-dissect` for other commands relevant to DDIs. +> See also: `systemd-dissect`. > More information: . - Mount an OS image: diff --git a/tldr/linux/pw-dot b/tldr/linux/pw-dot index 3124dfff..e37253a2 100644 --- a/tldr/linux/pw-dot +++ b/tldr/linux/pw-dot @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pw-dot > Create `.dot` files of the PipeWire graph. -> See also: `dot` for rendering graph. +> See also: `dot`. > More information: . - Generate a graph to `pw.dot` file: diff --git a/tldr/linux/quickemu b/tldr/linux/quickemu index bdf33687..f7d6a541 100644 --- a/tldr/linux/quickemu +++ b/tldr/linux/quickemu @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Build and manage highly optimised desktop virtual machines quickly. > Note: Virtual machine must be in stopped state when working with snapshots. -> See also: `quickget` for preparing VM configurations. +> See also: `quickget`. > More information: . - Create and run a virtual machine from a configuration file: diff --git a/tldr/linux/rmmod b/tldr/linux/rmmod index 58a479ac..31f3942c 100644 --- a/tldr/linux/rmmod +++ b/tldr/linux/rmmod @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # rmmod > Remove modules from the Linux kernel. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - Remove a module from the kernel: diff --git a/tldr/linux/semanage-boolean b/tldr/linux/semanage-boolean index 5b6b9637..d3fa8e25 100644 --- a/tldr/linux/semanage-boolean +++ b/tldr/linux/semanage-boolean @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # semanage boolean > Manage persistent SELinux boolean settings. -> See also: `semanage` for managing SELinux policies, `getsebool` for checking boolean values, and `setsebool` for applying non-persistent boolean settings. +> See also: `semanage`, `getsebool`, `setsebool`. > More information: . - List all booleans settings: diff --git a/tldr/linux/sinfo b/tldr/linux/sinfo index c432be66..55e35107 100644 --- a/tldr/linux/sinfo +++ b/tldr/linux/sinfo @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # sinfo > View information about Slurm nodes and partitions. -> See also: `squeue`, `sbatch`, which are also part of the Slurm workload manager. +> See also: `squeue`, `sbatch`. > More information: . - Show a quick summary overview of the cluster: diff --git a/tldr/linux/systemctl-daemon-reexec b/tldr/linux/systemctl-daemon-reexec index 753ba3ce..36013199 100644 --- a/tldr/linux/systemctl-daemon-reexec +++ b/tldr/linux/systemctl-daemon-reexec @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # systemctl daemon-reexec > Reexecute systemd while preserving current unit states. -> See also: `systemctl daemon-reload` for applying changes in unit files. +> See also: `systemctl daemon-reload`. > More information: . - Reexecute systemd: diff --git a/tldr/linux/systemctl-daemon-reload b/tldr/linux/systemctl-daemon-reload index 9b9cf875..f53718b6 100644 --- a/tldr/linux/systemctl-daemon-reload +++ b/tldr/linux/systemctl-daemon-reload @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Reload systemd manager configuration. > Use this after creating, modifying, or deleting unit files. -> See also: `systemctl reload` for reloading service configuration. +> See also: `systemctl reload`. > More information: . - Reload systemd to apply changes in unit files: diff --git a/tldr/linux/systemctl-list-dependencies b/tldr/linux/systemctl-list-dependencies index 1af5e0d2..e03150cb 100644 --- a/tldr/linux/systemctl-list-dependencies +++ b/tldr/linux/systemctl-list-dependencies @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # systemctl list-dependencies > Show a unit's dependency tree in systemd. -> See also: `systemctl list-units` to list loaded units. +> See also: `systemctl list-units`. > More information: . - Show the dependency tree of `default.target`: diff --git a/tldr/linux/systemctl-list-unit-files b/tldr/linux/systemctl-list-unit-files index ff9bf5bb..c5a8e042 100644 --- a/tldr/linux/systemctl-list-unit-files +++ b/tldr/linux/systemctl-list-unit-files @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # systemctl list-unit-files > List installed unit files and their enablement states. -> See also: `systemctl list-units` for listing units currently loaded in memory. +> See also: `systemctl list-units`. > More information: . - List installed unit files and their states: diff --git a/tldr/linux/systemctl-list-units b/tldr/linux/systemctl-list-units index 7c5959e7..3a0092e3 100644 --- a/tldr/linux/systemctl-list-units +++ b/tldr/linux/systemctl-list-units @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # systemctl list-units > List units that systemd currently has in memory. -> See also: `systemctl list-unit-files` for listing installed unit files. +> See also: `systemctl list-unit-files`. > More information: . - List units which are active, have pending jobs, or have failed: diff --git a/tldr/linux/waydroid b/tldr/linux/waydroid index 67e3c034..e52d057f 100644 --- a/tldr/linux/waydroid +++ b/tldr/linux/waydroid @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Install a new Android app from a file: -`waydroid app install {{path/to/file.apk}}` +`waydroid app install {{path/to/file}}.apk` - Launch an Android app by its package name: diff --git a/tldr/mosquitto_passwd b/tldr/mosquitto_passwd index c7f64254..73ed1a14 100644 --- a/tldr/mosquitto_passwd +++ b/tldr/mosquitto_passwd @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # mosquitto_passwd > Manage password files for mosquitto. -> See also: `mosquitto`, the MQTT server that this manages. +> See also: `mosquitto`. > More information: . - Add a new user to a password file (will prompt to enter the password): diff --git a/tldr/mysqldump b/tldr/mysqldump index ee7f3233..316d1726 100644 --- a/tldr/mysqldump +++ b/tldr/mysqldump @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # mysqldump > Backups MySQL databases. -> See also: `mysql` for restoring databases. +> See also: `mysql`. > More information: . - Create a backup (user will be prompted for a password): diff --git a/tldr/netperf b/tldr/netperf index e500609d..a9ed409e 100644 --- a/tldr/netperf +++ b/tldr/netperf @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # netperf > Client-side command for `netperf`, the benchmarking application that measures network throughput. Similar to `iperf`. -> See also: `netserver` for the server-side command. +> See also: `netserver`. > More information: . - Connect to server on a specific IP address via default port (12865): diff --git a/tldr/netserver b/tldr/netserver index 561df408..e32d5bb9 100644 --- a/tldr/netserver +++ b/tldr/netserver @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # netserver > Server-side command for `netperf`, the benchmarking application that measures network throughput. -> See also: `netperf` for the client-side command. +> See also: `netperf`. > More information: . - Start a server on the default port (12865) and fork to background: diff --git a/tldr/nix b/tldr/nix index d61464bd..af520de1 100644 --- a/tldr/nix +++ b/tldr/nix @@ -7,8 +7,8 @@ source: https://github.com/tldr-pages/tldr.git > A powerful package manager that makes package management reliable, reproducible, and declarative. > `nix` is experimental and requires enabling experimental features. -> See also: `nix classic` for a classic, stable interface. > Some subcommands such as `build`, `develop`, `flake`, `registry`, `profile`, `search`, `repl`, `store`, `edit`, `why-depends`, etc. have their own usage documentation. +> See also: `nix classic`. > More information: . - Enable the `nix` command: diff --git a/tldr/nix-build.3 b/tldr/nix-build.3 index 93431bef..519efc93 100644 --- a/tldr/nix-build.3 +++ b/tldr/nix-build.3 @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # nix build > Build a Nix expression (downloading from the cache when possible). -> See also: `nix-build` for information about traditional Nix builds from expressions, `nix flake` for information about flakes. +> See also: `nix-build`, `nix flake`. > More information: . - Build a package from nixpkgs, symlinking the result to `./result`: diff --git a/tldr/nix-registry b/tldr/nix-registry index a008ec58..8cbbf80b 100644 --- a/tldr/nix-registry +++ b/tldr/nix-registry @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # nix registry > Manage a Nix flake registry. -> See also: `nix flake` for information about flakes. +> See also: `nix flake`. > More information: . - Pin the `nixpkgs` revision to the current version of the upstream repository: diff --git a/tldr/nix-run b/tldr/nix-run index ae216582..c669fa1b 100644 --- a/tldr/nix-run +++ b/tldr/nix-run @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # nix run > Run an application from a Nix flake. -> See also: `nix flake` for information about flakes. +> See also: `nix flake`. > More information: . - Run the default application in the flake in the current directory: diff --git a/tldr/nix-search b/tldr/nix-search index 0ca89308..a1fbac71 100644 --- a/tldr/nix-search +++ b/tldr/nix-search @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # nix search > Search for packages in a Nix flake. -> See also: `nix flake` for information about flakes. +> See also: `nix flake`. > More information: . - Search `nixpkgs` for a package based on its name or description: diff --git a/tldr/nix-shell.3 b/tldr/nix-shell.3 index 07f8fba8..c986065b 100644 --- a/tldr/nix-shell.3 +++ b/tldr/nix-shell.3 @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # nix shell > Start a shell in which the specified packages are available. -> See also: `nix-shell` for setting up development environments, `nix flake` for information about flakes. +> See also: `nix-shell`, `nix flake`. > More information: . - Start an interactive shell with some packages from `nixpkgs`: diff --git a/tldr/npm-login b/tldr/npm-login index e6a10a38..726669c1 100644 --- a/tldr/npm-login +++ b/tldr/npm-login @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # npm login > Log in to a registry user account. -> See also: `npm logout` for logging out. +> See also: `npm logout`. > More information: . - Log in to a registry user account and save the credentials to the `.npmrc` file: diff --git a/tldr/npm-logout b/tldr/npm-logout index 12f25b8b..067f28fc 100644 --- a/tldr/npm-logout +++ b/tldr/npm-logout @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # npm logout > Log out of the registry user account. -> See also: `npm login` for logging in. +> See also: `npm login`. > More information: . - Log out of the registry user account: diff --git a/tldr/osx/netstat b/tldr/osx/netstat index 2b05818e..829f24ec 100644 --- a/tldr/osx/netstat +++ b/tldr/osx/netstat @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # netstat > Display network-related information such as open connections, open socket ports, etc. -> See also: `lsof` for listing network connections, including listening ports. +> See also: `lsof`. > More information: . - Display the PID and program name listening on a specific protocol: diff --git a/tldr/podman-load b/tldr/podman-load index 37d69450..f5679dea 100644 --- a/tldr/podman-load +++ b/tldr/podman-load @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # podman load -> Load an image from an oci-archive or a docker-archive created using podman save. +> Load an image from an oci-archive or a docker-archive created using `podman save`. > See also: `podman save`, `podman import`. > More information: . diff --git a/tldr/podman-pull b/tldr/podman-pull index 05324ca8..a9446f93 100644 --- a/tldr/podman-pull +++ b/tldr/podman-pull @@ -20,13 +20,13 @@ source: https://github.com/tldr-pages/tldr.git `podman pull {{[-a|--all-tags]}} {{image}}` -- Pull a container image for a specific platform, e.g. `linux/arm64`: +- Pull a container image for a specific platform: `podman pull --platform {{linux/arm64}} {{image}}:{{tag}}` - Pull a container image without TLS verification: -`podman pull --tls-verify={{false}} {{image}}:{{tag}}` +`podman pull --tls-verify=false {{image}}:{{tag}}` - Display help: diff --git a/tldr/popd b/tldr/popd index 4129a527..7591ceb6 100644 --- a/tldr/popd +++ b/tldr/popd @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # popd > Remove a directory placed on the directory stack via the pushd shell built-in. -> See also: `pushd` to place a directory on the stack and `dirs` to display directory stack contents. +> See also: `pushd`, `dirs`. > More information: . - Remove the top directory from the stack and cd to it: diff --git a/tldr/pushd b/tldr/pushd index 965f7d78..957bf01c 100644 --- a/tldr/pushd +++ b/tldr/pushd @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pushd > Place a directory on a stack so it can be accessed later. -> See also: `popd` to switch back to original directory and `dirs` to display directory stack contents. +> See also: `popd`, `dirs`. > More information: . - Switch to directory and push it on the stack: diff --git a/tldr/qownnotes b/tldr/qownnotes index b601e83a..4cb13877 100644 --- a/tldr/qownnotes +++ b/tldr/qownnotes @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Markdown note-taking application. > Optionally integrates with the note-taking applications of Nextcloud and ownCloud. -> See also: `qc` for managing command snippets. +> See also: `qc`. > More information: . - Run in portable mode: diff --git a/tldr/redshift b/tldr/redshift index 7e4fa5a6..de6fae5b 100644 --- a/tldr/redshift +++ b/tldr/redshift @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # redshift > Adjust the color temperature of a screen according to its surroundings. -> Opmerking: Redshift ondersteunt Wayland niet. +> Note: Redshift does not support Wayland. > More information: . - Turn on Redshift with a specific [t]emperature during day (e.g., 5700K) and at night (e.g., 3600K): diff --git a/tldr/setopt b/tldr/setopt index 04a59fa9..291339b2 100644 --- a/tldr/setopt +++ b/tldr/setopt @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Set Z shell (`zsh`) options. > Note: Zsh options are case-insensitive and underscores are ignored. -> See also: `unsetopt` to unset options. +> See also: `unsetopt`. > More information: . - List enabled options: diff --git a/tldr/sfdk-build-shell b/tldr/sfdk-build-shell index bee6408c..f530010c 100644 --- a/tldr/sfdk-build-shell +++ b/tldr/sfdk-build-shell @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # sfdk build-shell > Execute custom steps in build engine. -> See also: `sfdk config` for configuring the build target and `sfdk build-init` for initializing build tree. +> See also: `sfdk config`, `sfdk build-init`. > More information: . - Launch interactive shell in the build engine: diff --git a/tldr/sh b/tldr/sh index 6be9ff25..0c96847d 100644 --- a/tldr/sh +++ b/tldr/sh @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # sh > Bourne shell, the standard command language interpreter. -> See also: `!` and `^` for history expansion. +> See also: `!`, `^`. > More information: . - Start an interactive shell session: diff --git a/tldr/speedtest-cli b/tldr/speedtest-cli index a29eb4ab..b579b6f9 100644 --- a/tldr/speedtest-cli +++ b/tldr/speedtest-cli @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # speedtest-cli > Test internet bandwidth using . -> See also: `speedtest` for the official CLI. +> See also: `speedtest`. > More information: . - Run a speed test: diff --git a/tldr/ssh-agent b/tldr/ssh-agent index 3f85f7b2..0cb3a487 100644 --- a/tldr/ssh-agent +++ b/tldr/ssh-agent @@ -6,8 +6,8 @@ source: https://github.com/tldr-pages/tldr.git # ssh-agent > Spawn an SSH Agent process. -> An SSH Agent holds SSH keys decrypted in memory until removed or the process is killed. -> See also: `ssh-add`, which can add and manage keys held by an SSH Agent. +> Note: An SSH Agent holds SSH keys decrypted in memory until removed or the process is killed. +> See also: `ssh-add`. > More information: . - Start an SSH Agent for the current shell: diff --git a/tldr/ssh-keygen b/tldr/ssh-keygen index cb069d36..5dc874ff 100644 --- a/tldr/ssh-keygen +++ b/tldr/ssh-keygen @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # ssh-keygen > Generate SSH keys used for authentication, password-less logins, and other things. -> See also: `ssh-copy-id` for installing SSH keys on remote hosts. +> See also: `ssh-copy-id`. > More information: . - Generate a key interactively: diff --git a/tldr/sslscan b/tldr/sslscan index 6d1b44b5..0b070992 100644 --- a/tldr/sslscan +++ b/tldr/sslscan @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - Show certificate information: -`testssl --show-certificate {{example.com}}` +`sslscan --show-certificate {{example.com}}` diff --git a/tldr/unsetopt b/tldr/unsetopt index 8abaeee7..a14981db 100644 --- a/tldr/unsetopt +++ b/tldr/unsetopt @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Unset options for the Z shell (`zsh`). > Note: Zsh options are case-insensitive and underscores are ignored. -> See also: `setopt` to set options. +> See also: `setopt`. > More information: . - List all currently unset options (use `setopt` to list set options): diff --git a/tldr/vainfo b/tldr/vainfo new file mode 100644 index 00000000..b396cd75 --- /dev/null +++ b/tldr/vainfo @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# vainfo + +> Display information from VA API driver . +> More information: . + +- Show version and supported entrypoints: + +`vainfo` + +- Test a specific display protocol: + +`vainfo --display {{wayland|x11|drm|...}}` + +- Show available display protocols: + +`vainfo --display help` + +- Show all supported entrypoints: + +`vainfo {{[-a|--all]}}` + +- Display help: + +`vainfo --help` diff --git a/tldr/wait b/tldr/wait index 7c68e0b5..0ad2dc92 100644 --- a/tldr/wait +++ b/tldr/wait @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # wait > Wait for a process to complete before proceeding. -> See also: `ps` to view information about running processes and `waitpid`. +> See also: `ps`, `waitpid`. > More information: . - Wait for a process to finish given its process ID (PID) and return its exit status: diff --git a/tldr/wcurl b/tldr/wcurl index 14167840..bf463801 100644 --- a/tldr/wcurl +++ b/tldr/wcurl @@ -9,18 +9,18 @@ source: https://github.com/tldr-pages/tldr.git > See also: `wget`, `curl`. > More information: . -- Download the contents of a URL to a file indicated by the URL ("foo" in this case): +- Download the contents of a URL to a file indicated by the URL (`index.html` in this case): -`wcurl {{https://example.com/foo}}` +`wcurl {{https://example.com/index.html}}` - Download the contents of a URL to a file with a specified name: -`wcurl {{[-o|--output]}} {{bar}} {{https://example.com/foo}}` +`wcurl {{[-o|--output]}} {{path/to/file}} {{https://example.com/index.html}}` - Download the contents of a URL, enabling progress bar and defaulting to HTTP/2: -`wcurl --curl-options "--progress-bar --http2" {{https://example.com/foo}}` +`wcurl --curl-options "--progress-bar --http2" {{https://example.com/index.html}}` - Resume from an interrupted download: -`wcurl --curl-options "--clobber --continue-at -" {{https://example.com/foo}}` +`wcurl --curl-options "--clobber --continue-at -" {{https://example.com/index.html}}` diff --git a/tldr/windows/pushd b/tldr/windows/pushd index ec4941b1..296dbc2c 100644 --- a/tldr/windows/pushd +++ b/tldr/windows/pushd @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pushd > Place a directory on a stack so it can be accessed later. -> See also: `popd` to switch back to original directory. +> See also: `popd`. > More information: . - Switch to directory and push it on the stack: