mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
*: add oxford comma and minor fixes part 1 (#19919)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# ansible-vault
|
||||
|
||||
> Encrypt and decrypt values, data structures and files within Ansible projects.
|
||||
> Encrypt and decrypt values, data structures, and files within Ansible projects.
|
||||
> More information: <https://docs.ansible.com/ansible/latest/user_guide/vault.html#id17>.
|
||||
|
||||
- Create a new encrypted vault file with a prompt for a password:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# aws codeartifact
|
||||
|
||||
> Manage CodeArtifact repositories, domains, packages, package versions and assets.
|
||||
> Manage CodeArtifact repositories, domains, packages, package versions, and assets.
|
||||
> CodeArtifact is an artifact repository compatible with popular package managers and build tools like Maven, Gradle, npm, Yarn, Twine, pip, NuGet, and SwiftPM.
|
||||
> More information: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/codeartifact/index.html>.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# aws quicksight
|
||||
|
||||
> Create, delete, list, search and update AWS QuickSight entities.
|
||||
> Create, delete, list, search, and update AWS QuickSight entities.
|
||||
> More information: <https://docs.aws.amazon.com/cli/latest/reference/quicksight/>.
|
||||
|
||||
- List datasets:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# aws rds
|
||||
|
||||
> Use AWS Relational Database Service, a web service for setting up, operating and scaling relational databases.
|
||||
> Use AWS Relational Database Service, a web service for setting up, operating, and scaling relational databases.
|
||||
> More information: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/rds/index.html>.
|
||||
|
||||
- Display help for a specific RDS subcommand:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# awslogs
|
||||
|
||||
> Queries groups, streams and events from Amazon CloudWatch logs.
|
||||
> Query groups, streams, and events from Amazon CloudWatch logs.
|
||||
> More information: <https://github.com/jorgebastida/awslogs#options>.
|
||||
|
||||
- List log groups:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# balena
|
||||
|
||||
> Interact with the balenaCloud, openBalena and the balena API.
|
||||
> Interact with the balenaCloud, openBalena, and the balena API.
|
||||
> More information: <https://www.balena.io/docs/reference/cli/>.
|
||||
|
||||
- Log in to the balenaCloud account:
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@
|
||||
|
||||
`bat {{[-H|--highlight-line]}} {{10|5:10|:10|10:|10:+5}} {{path/to/file}}`
|
||||
|
||||
- Show non-printable characters like space, tab or newline:
|
||||
- Show non-printable characters like space, tab, or newline:
|
||||
|
||||
`bat {{[-A|--show-all]}} {{path/to/file}}`
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# bgpgrep
|
||||
|
||||
> Filter and print BGP data within MRT dumps.
|
||||
> Can read files compressed with `gzip`, `bzip2` and `xz`.
|
||||
> Can read files compressed with `gzip`, `bzip2`, and `xz`.
|
||||
> More information: <https://codeberg.org/1414codeforge/ubgpsuite>.
|
||||
|
||||
- List all routes:
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
|
||||
`binwalk {{[-E|--entropy]}} {{[-J|--save]}} {{path/to/binary}}`
|
||||
|
||||
- Combine entropy, signature and opcodes analysis in a single command:
|
||||
- Combine entropy, signature, and opcodes analysis in a single command:
|
||||
|
||||
`binwalk {{[-E|--entropy]}} {{[-B|--signature]}} {{[-A|--opcodes]}} {{path/to/binary}}`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# blackfire
|
||||
|
||||
> Monitor, profile and test a PHP application.
|
||||
> Monitor, profile, and test a PHP application.
|
||||
> More information: <https://blackfire.io>.
|
||||
|
||||
- Initialize and configure the Blackfire client:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# bpytop
|
||||
|
||||
> A resource monitor that shows information about the CPU, memory, disks, network and processes.
|
||||
> A resource monitor that shows information about the CPU, memory, disks, network, and processes.
|
||||
> A Python version of `bashtop`.
|
||||
> More information: <https://github.com/aristocratos/bpytop#command-line-options>.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# break
|
||||
|
||||
> Break out of a `for`, `while`, `until` or `select` loop.
|
||||
> Break out of a `for`, `while`, `until`, or `select` loop.
|
||||
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-break>.
|
||||
|
||||
- Break out of a single loop:
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
> Output a random buzzphrase. Written in Node.js.
|
||||
> More information: <https://github.com/atomantic/buzzphrase#usage>.
|
||||
|
||||
- Generate a string of three random phrases containing an adjective, a past tense verb and a plural noun:
|
||||
- Generate a string of three random phrases containing an adjective, a past tense verb, and a plural noun:
|
||||
|
||||
`buzzphrase`
|
||||
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
|
||||
`caller`
|
||||
|
||||
- Print the line, function and filename where the current function was called:
|
||||
- Print the line, function, and filename where the current function was called:
|
||||
|
||||
`caller 0`
|
||||
|
||||
- Print the line, the function name and the filename of a function call `n` frames back:
|
||||
- Print the line, the function name, and the filename of a function call `n` frames back:
|
||||
|
||||
`caller {{n}}`
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
|
||||
`{{command}} | chroma {{[-l|--lexer]}} {{c++}} {{[-f|--formatter]}} {{svg}} {{[-s|--style]}} {{monokai}} > {{path/to/target_file.svg}}`
|
||||
|
||||
- List available lexers, styles and formatters:
|
||||
- List available lexers, styles, and formatters:
|
||||
|
||||
`chroma --list`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# clang-tidy
|
||||
|
||||
> An LLVM-based C/C++ linter to find style violations, bugs and security flaws through static analysis.
|
||||
> An LLVM-based C/C++ linter to find style violations, bugs, and security flaws through static analysis.
|
||||
> More information: <https://clang.llvm.org/extra/clang-tidy/>.
|
||||
|
||||
- Run default checks on a source file:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# codespell
|
||||
|
||||
> Spellchecker for source code.
|
||||
> More information: <https://github.com/codespell-project/codespell>.
|
||||
> More information: <https://manned.org/codespell>.
|
||||
|
||||
- Check for typos in all text files in the current directory, recursively:
|
||||
|
||||
@@ -9,28 +9,28 @@
|
||||
|
||||
- Correct all typos found in-place:
|
||||
|
||||
`codespell --write-changes`
|
||||
`codespell {{[-w|--write-changes]}}`
|
||||
|
||||
- Skip files with names that match the specified pattern (accepts a comma-separated list of patterns using wildcards):
|
||||
|
||||
`codespell --skip "{{pattern}}"`
|
||||
`codespell {{[-S|--skip]}} "{{pattern}}"`
|
||||
|
||||
- Use a custom dictionary file when checking (`--dictionary` can be used multiple times):
|
||||
|
||||
`codespell --dictionary {{path/to/file.txt}}`
|
||||
`codespell {{[-D|--dictionary]}} {{path/to/file.txt}}`
|
||||
|
||||
- Do not check words that are listed in the specified file:
|
||||
|
||||
`codespell --ignore-words {{path/to/file.txt}}`
|
||||
`codespell {{[-I|--ignore-words]}} {{path/to/file.txt}}`
|
||||
|
||||
- Do not check the specified words:
|
||||
|
||||
`codespell --ignore-words-list {{ignored_word1,ignored_word2,...}}`
|
||||
`codespell {{[-L|--ignore-words-list]}} {{ignored_word1,ignored_word2,...}}`
|
||||
|
||||
- Print 3 lines of context around, before or after each match:
|
||||
- Print 3 lines of [C]ontext around, [B]efore, or [A]fter each match:
|
||||
|
||||
`codespell --{{context|before-context|after-context}} {{3}}`
|
||||
`codespell --{{context|before-context|after-context}} 3`
|
||||
|
||||
- Check file names for typos, in addition to file contents:
|
||||
|
||||
`codespell --check-filenames`
|
||||
`codespell {{[-f|--check-filenames]}}`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# cosign
|
||||
|
||||
> Container Signing, Verification and Storage in an OCI registry.
|
||||
> Container Signing, Verification, and Storage in an OCI registry.
|
||||
> More information: <https://github.com/sigstore/cosign/blob/main/doc/cosign.md>.
|
||||
|
||||
- Generate a key-pair:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# crane registry
|
||||
|
||||
> This command serves a registry implementation on an automatically chosen port (`:0`), `$PORT` or `--address`.
|
||||
> This command serves a registry implementation on an automatically chosen port (`:0`), `$PORT`, or `--address`.
|
||||
> The command blocks while the server accepts pushes and pulls and contents are can be stored in memory, and disk.
|
||||
> More information: <https://github.com/google/go-containerregistry/blob/main/cmd/crane/doc/crane_registry_serve.md>.
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@
|
||||
|
||||
`dfc`
|
||||
|
||||
- Display all filesystems including pseudo, duplicate and inaccessible filesystems:
|
||||
- Display all filesystems including pseudo, duplicate, and inaccessible filesystems:
|
||||
|
||||
`dfc -a`
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# djxl
|
||||
|
||||
> Decompress JPEG XL images.
|
||||
> Accepted output extensions are PNG, APNG, JPEG, EXR, PGM, PPM, PNM, PFM, PAM, EXIF, XMP and JUMBF.
|
||||
> Accepted output extensions are PNG, APNG, JPEG, EXR, PGM, PPM, PNM, PFM, PAM, EXIF, XMP, and JUMBF.
|
||||
> More information: <https://github.com/libjxl/libjxl/blob/main/doc/man/djxl.txt>.
|
||||
|
||||
- Decompress a JPEG XL image to another format:
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
`docker start {{container}}`
|
||||
|
||||
- Start a container, attaching `stdout` and `stderr` and forwarding signals:
|
||||
- Start a container, attaching `stdout` and `stderr`, and forwarding signals:
|
||||
|
||||
`docker start {{[-a|--attach]}} {{container}}`
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@
|
||||
|
||||
`duf`
|
||||
|
||||
- List everything (such as pseudo, duplicate or inaccessible file systems):
|
||||
- List everything (such as pseudo, duplicate, or inaccessible file systems):
|
||||
|
||||
`duf --all`
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
`grep {{[-Ei|--extended-regexp --ignore-case]}} "{{search_pattern}}" {{path/to/file}}`
|
||||
|
||||
- Print 3 lines of [C]ontext around, [B]efore or [A]fter each match:
|
||||
- Print 3 lines of [C]ontext around, [B]efore, or [A]fter each match:
|
||||
|
||||
`grep {{--context|--before-context|--after-context}} 3 "{{search_pattern}}" {{path/to/file}}`
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
> Display current user and group identity.
|
||||
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/id-invocation.html>.
|
||||
|
||||
- Display current user's ID (UID), group ID (GID) and groups to which they belong:
|
||||
- Display current user's ID (UID), group ID (GID), and groups to which they belong:
|
||||
|
||||
`id`
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
`id {{[-Gn|--groups --name]}}`
|
||||
|
||||
- Display an arbitrary user's ID (UID), group ID (GID) and groups to which they belong:
|
||||
- Display an arbitrary user's ID (UID), group ID (GID), and groups to which they belong:
|
||||
|
||||
`id {{username}}`
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# imapsync
|
||||
|
||||
> Email IMAP tool for syncing, copying and migrating email mailboxes between two IMAP servers, one way, and without duplicates.
|
||||
> Email IMAP tool for syncing, copying, and migrating email mailboxes between two IMAP servers, one way, and without duplicates.
|
||||
> More information: <https://imapsync.lamiral.info/#doc>.
|
||||
|
||||
- Synchronize IMAP account between host1 and host2:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
> A peer-to-peer hypermedia protocol. Aims to make the web more open.
|
||||
> More information: <https://docs.ipfs.tech/reference/kubo/cli/>.
|
||||
|
||||
- Add a file from local to the filesystem, pin it and print the relative hash:
|
||||
- Add a file from local to the filesystem, pin it, and print the relative hash:
|
||||
|
||||
`ipfs add {{path/to/file}}`
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# kops
|
||||
|
||||
> Create, destroy, upgrade and maintain Kubernetes clusters.
|
||||
> Create, destroy, upgrade, and maintain Kubernetes clusters.
|
||||
> More information: <https://kops.sigs.k8s.io/cli/kops/>.
|
||||
|
||||
- Create a cluster from the configuration specification:
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@
|
||||
|
||||
`mlr --icsv --opprint sort -nr {{field}} {{example.csv}}`
|
||||
|
||||
- Convert CSV to JSON, performing calculations and display those calculations:
|
||||
- Convert CSV to JSON, performing calculations, and display those calculations:
|
||||
|
||||
`mlr --icsv --ojson put '${{newField1}} = ${{oldFieldA}}/${{oldFieldB}}' {{example.csv}}`
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# neofetch
|
||||
|
||||
> Display information about the operating system, software and hardware.
|
||||
> Display information about the operating system, software, and hardware.
|
||||
> Note: `neofetch` is no longer maintained.
|
||||
> See also: `fastfetch`.
|
||||
> More information: <https://manned.org/neofetch>.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# pastel
|
||||
|
||||
> Generate, analyze, convert and manipulate colors.
|
||||
> Generate, analyze, convert, and manipulate colors.
|
||||
> More information: <https://manned.org/pastel>.
|
||||
|
||||
- Convert colors from one format to another. Here from RGB to HSL:
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
# pm2
|
||||
|
||||
> Process manager for Node.js.
|
||||
> Used for log management, monitoring and configuring processes.
|
||||
> Used for log management, monitoring, and configuring processes.
|
||||
> More information: <https://pm2.keymetrics.io/docs/usage/quick-start/>.
|
||||
|
||||
- Start a process with a name that can be used for later operations:
|
||||
|
||||
@@ -27,9 +27,9 @@
|
||||
|
||||
`podman ps {{[-a|--all]}} {{[-f|--filter]}} "exited={{code}}"`
|
||||
|
||||
- Filter containers by status (created, running, removing, paused, exited and dead):
|
||||
- Filter containers by status:
|
||||
|
||||
`podman ps {{[-f|--filter]}} "status={{status}}"`
|
||||
`podman ps {{[-f|--filter]}} "status={{created|running|removing|paused|exited|dead}}"`
|
||||
|
||||
- Filter containers that mount a specific volume or have a volume mounted in a specific path:
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# podman
|
||||
|
||||
> Simple management tool for pods, containers and images.
|
||||
> Simple management tool for pods, containers, and images.
|
||||
> Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`.
|
||||
> More information: <https://github.com/containers/podman/blob/main/commands-demo.md>.
|
||||
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
|
||||
`printf -v {{myvar}} {{"This is %s = %d\n" "a year" 2016}}`
|
||||
|
||||
- Print a hexadecimal, octal and scientific number:
|
||||
- Print a hexadecimal, octal, and scientific number:
|
||||
|
||||
`printf "{{hex=%x octal=%o scientific=%e\n}}" 0x{{FF}} 0{{377}} {{100000}}`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# psysh
|
||||
|
||||
> A runtime developer console, interactive debugger and REPL for PHP.
|
||||
> A runtime developer console, interactive debugger, and REPL for PHP.
|
||||
> More information: <https://github.com/bobthecow/psysh/wiki/CLI-options>.
|
||||
|
||||
- Open a shell in the current directory:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# pueue group
|
||||
|
||||
> Display, add or remove groups.
|
||||
> Display, add, or remove groups.
|
||||
> More information: <https://github.com/Nukesor/pueue#how-to-use-it>.
|
||||
|
||||
- Show all groups with their statuses and number of parallel jobs:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# restic
|
||||
|
||||
> A fast, secure and secure backup program.
|
||||
> A fast and secure backup program.
|
||||
> More information: <https://restic.readthedocs.io/en/stable/manual_rest.html#usage-help>.
|
||||
|
||||
- Initialize a backup repository in the specified local directory:
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
`scamper -I "{{ping}} {{192.0.2.1}}" -I "{{trace}} {{192.0.2.2}}"`
|
||||
|
||||
- Ping several hosts with UDP, use a specific port number for the first ping and increase it for each subsequent ping:
|
||||
- Ping several hosts with UDP, use a specific port number for the first ping, and increase it for each subsequent ping:
|
||||
|
||||
`scamper -c "{{ping}} -P {{UDP-dport}} -d {{33434}}" -i {{192.0.2.1}} -i {{192.0.2.2}}`
|
||||
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
|
||||
`shred {{[-u|--remove]}} {{path/to/file}}`
|
||||
|
||||
- Overwrite a file 100 times, add a final overwrite with zeros, remove the file after overwriting it and show verbose progress on the screen:
|
||||
- Overwrite a file 100 times, add a final overwrite with zeros, remove the file after overwriting it, and show verbose progress on the screen:
|
||||
|
||||
`shred {{[-vzu|--verbose --zero --remove]}} {{[-n|--iterations]}} 100 {{path/to/file}}`
|
||||
|
||||
+1
-1
@@ -15,6 +15,6 @@
|
||||
|
||||
`echo "example" | tee {{/dev/tty}} | {{xargs printf "[%s]"}}`
|
||||
|
||||
- Create a directory called "example", count the number of characters in "example" and write "example" to the terminal:
|
||||
- Create a directory called "example", count the number of characters in "example", and write "example" to the terminal:
|
||||
|
||||
`echo "example" | tee >(xargs mkdir) >(wc {{[-c|--bytes]}})`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# tidy
|
||||
|
||||
> Clean up and pretty print HTML, XHTML and XML files.
|
||||
> Clean up and pretty print HTML, XHTML, and XML files.
|
||||
> Note: `tidy` cannot preserve original indentation.
|
||||
> More information: <https://api.html-tidy.org/tidy/tidylib_api_next/group__options__cli.html#gad7a9fcaf7b2a712a82e625e84c042b28>.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# uncrustify
|
||||
|
||||
> C, C++, C#, D, Java and Pawn source code formatter.
|
||||
> C, C++, C#, D, Java, and Pawn source code formatter.
|
||||
> More information: <https://manned.org/uncrustify>.
|
||||
|
||||
- Format a single file:
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
> Tell how long the system has been running and other information.
|
||||
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/uptime-invocation.html>.
|
||||
|
||||
- Print current time, uptime, number of logged-in users and other information:
|
||||
- Print current time, uptime, number of logged-in users, and other information:
|
||||
|
||||
`uptime`
|
||||
|
||||
|
||||
+1
-1
@@ -16,6 +16,6 @@
|
||||
|
||||
`w {{[-h|--no-header]}}`
|
||||
|
||||
- Display information without including the login, JCPU and PCPU columns:
|
||||
- Display information without including the login, JCPU, and PCPU columns:
|
||||
|
||||
`w {{[-s|--short]}}`
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
`whence "{{command}}"`
|
||||
|
||||
- Display type of `command`, with location if defined as a function, or binary (equivalent to the `type` and `command -V` builtins):
|
||||
- Display type of `command`, with location if defined as a function or binary (equivalent to the `type` and `command -V` builtins):
|
||||
|
||||
`whence -v "{{command}}"`
|
||||
|
||||
@@ -19,6 +19,6 @@
|
||||
|
||||
`whence -ca "{{command}}"`
|
||||
|
||||
- Search only the `$PATH` for `command`, ignoring builtins, aliases or shell functions (equivalent to the `where` command):
|
||||
- Search only the `$PATH` for `command`, ignoring builtins, aliases, or shell functions (equivalent to the `where` command):
|
||||
|
||||
`whence -p "{{command}}"`
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@
|
||||
|
||||
`wlc {{[-c|--config]}} {{path/to/file}} list-projects`
|
||||
|
||||
- List components in a project, and override API URL and API key:
|
||||
- List components in a project and override API URL and API key:
|
||||
|
||||
`wlc {{[-u|--url]}} {{URL}} {{[-k|--key]}} {{key}} ls {{project}}`
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
`ykman openpgp access set-retries {{3}} {{3}} {{3}}`
|
||||
|
||||
- Change the User PIN, Reset Code or Admin PIN:
|
||||
- Change the User PIN, Reset Code, or Admin PIN:
|
||||
|
||||
`ykman openpgp access change-{{pin|reset-code|admin-pin}}`
|
||||
|
||||
|
||||
+1
-1
@@ -11,6 +11,6 @@
|
||||
|
||||
`zdb {{[-C|--config]}} {{poolname}}`
|
||||
|
||||
- Show statistics about number, size and deduplication of blocks:
|
||||
- Show statistics about number, size, and deduplication of blocks:
|
||||
|
||||
`zdb {{[-b|--block-stats]}} {{poolname}}`
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
> Find extended `regex` patterns in compressed files using `egrep`.
|
||||
> More information: <https://manned.org/zegrep>.
|
||||
|
||||
- Search for extended `regex` (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-sensitive):
|
||||
- Search for extended `regex` (supporting `?`, `+`, `{}`, `()`, and `|`) in a compressed file (case-sensitive):
|
||||
|
||||
`zegrep "{{search_pattern}}" {{path/to/file}}`
|
||||
|
||||
- Search for extended `regex` (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-insensitive):
|
||||
- Search for extended `regex` (supporting `?`, `+`, `{}`, `()`, and `|`) in a compressed file (case-insensitive):
|
||||
|
||||
`zegrep {{[-i|--ignore-case]}} "{{search_pattern}}" {{path/to/file}}`
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
`zstd {{[-d|--decompress]}} {{[-c|--stdout]}} {{path/to/file.zst}}`
|
||||
|
||||
- Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default:
|
||||
- Compress a file specifying the compression level, where 1=fastest, 19=slowest, and 3=default:
|
||||
|
||||
`zstd -{{level}} {{path/to/file}}`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user