mirror of
https://github.com/tldr-pages/tldr
synced 2026-08-26 14:13:36 +01:00
*: fix quotation of technical words (#18991)
Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
+1
-1
@@ -7,7 +7,7 @@
|
||||
|
||||
`atq`
|
||||
|
||||
- Show jobs from the 'a' [q]ueue (queues have single-character names):
|
||||
- Show jobs from the `a` [q]ueue (queues have single-character names):
|
||||
|
||||
`atq -q {{a}}`
|
||||
|
||||
|
||||
@@ -27,6 +27,6 @@
|
||||
|
||||
`aws cloudformation detect-stack-drift --stack-name {{stack-id}} --profile {{profile}}`
|
||||
|
||||
- Check the drift status output of a stack using 'StackDriftDetectionId' from the previous command output:
|
||||
- Check the drift status output of a stack using `StackDriftDetectionId` from the previous command output:
|
||||
|
||||
`aws cloudformation describe-stack-resource-drifts --stack-name {{stack-drift-detection-id}} --profile {{profile}}`
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
`compgen -k`
|
||||
|
||||
- See all available commands/aliases starting with 'ls':
|
||||
- See all available commands/aliases starting with `ls`:
|
||||
|
||||
`compgen -ac {{ls}}`
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
`crane pull {{image_name}} {{path/to/tarball}}`
|
||||
|
||||
- Preserve image reference used to pull as an annotation when used with --format=oci:
|
||||
- Preserve image reference used to pull as an annotation when used with `--format=oci`:
|
||||
|
||||
`crane pull {{image_name}} {{path/to/tarball}} --annotate-ref`
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
`crane pull {{image_name}} {{path/to/tarball}} {{[-c|--cache_path]}} {{path/to/cache}}`
|
||||
|
||||
- Format in which to save images (default 'tarball'):
|
||||
- Format in which to save images (default `tarball`):
|
||||
|
||||
`crane pull {{image_name}} {{path/to/tarball}} {{-format}} {{format_name}}`
|
||||
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
|
||||
`csvtool {{[-c|--column]}} {{2,4}} {{path/to/file.csv}}`
|
||||
|
||||
- Extract lines from a CSV file where the second column exactly matches 'Foo':
|
||||
- Extract lines from a CSV file where the second column exactly matches `Foo`:
|
||||
|
||||
`csvtool {{[-c|--column]}} {{2}} {{[-s|--search]}} '{{^Foo$}}' {{path/to/file.csv}}`
|
||||
|
||||
- Extract lines from a CSV file where the second column starts with 'Bar':
|
||||
- Extract lines from a CSV file where the second column starts with `Bar`:
|
||||
|
||||
`csvtool {{[-c|--column]}} {{2}} {{[-s|--search]}} '{{^Bar}}' {{path/to/file.csv}}`
|
||||
|
||||
- Find lines in a CSV file where the second column ends with 'Baz' and then extract the third and sixth columns:
|
||||
- Find lines in a CSV file where the second column ends with `Baz` and then extract the third and sixth columns:
|
||||
|
||||
`csvtool {{[-c|--column]}} {{2}} {{[-s|--search]}} '{{Baz$}}' {{path/to/file.csv}} | csvtool {{[-e|--no-header]}} {{[-c|--column]}} {{3,6}}`
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# fisher
|
||||
|
||||
> Fisher, a fish-shell plugin manager.
|
||||
> Install plugins by name or from a managed 'fishfile' for bundled installs.
|
||||
> Install plugins by name or from a managed `fishfile` for bundled installs.
|
||||
> More information: <https://github.com/jorgebucaran/fisher>.
|
||||
|
||||
- Install one or more plugins:
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
`fisher {{gist_url}}`
|
||||
|
||||
- Edit 'fishfile' manually with your favorite editor and install multiple plugins:
|
||||
- Edit `fishfile` manually with your favorite editor and install multiple plugins:
|
||||
|
||||
`{{editor}} ~/.config/fish/fishfile; fisher`
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
`gatsby new {{site_name}}`
|
||||
|
||||
- Create a new site with a Gatsby 'starter':
|
||||
- Create a new site with a Gatsby `starter`:
|
||||
|
||||
`gatsby new {{site_name}} {{url_of_starter_github_repo}}`
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
`killall {{process_name}}`
|
||||
|
||||
- List available signal names (to be used without the 'SIG' prefix):
|
||||
- List available signal names (to be used without the `SIG` prefix):
|
||||
|
||||
`killall {{[-l|--list]}}`
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
`kubectl get {{pod|service|deployment|ingress|...}} {{[-o|--output]}} wide`
|
||||
|
||||
- Update specified pod with the label 'unhealthy' and the value 'true':
|
||||
- Update specified pod with the label `unhealthy` and the value `true`:
|
||||
|
||||
`kubectl label pods {{name}} unhealthy=true`
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
`screenfetch`
|
||||
|
||||
- Take a screenshot (requires 'scrot'):
|
||||
- Take a screenshot (requires `scrot`):
|
||||
|
||||
`screenfetch -s`
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
`tail {{path/to/file1 path/to/file2 ...}}`
|
||||
|
||||
- Show last 'count' lines in file:
|
||||
- Show last `count` lines in file:
|
||||
|
||||
`tail {{[-n|--lines]}} {{count}} {{path/to/file}}`
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
> Show the contents of the current directory as a tree.
|
||||
> More information: <https://manned.org/tree>.
|
||||
|
||||
- Print files and directories up to 'num' levels of depth (where 1 means the current directory):
|
||||
- Print files and directories up to `num` levels of depth (where 1 means the current directory):
|
||||
|
||||
`tree -L {{num}}`
|
||||
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
> Utility for managing Non-Volatile DIMMs.
|
||||
> More information: <https://manned.org/ndctl>.
|
||||
|
||||
- Create an 'fsdax' mode namespace:
|
||||
- Create an `fsdax` mode namespace:
|
||||
|
||||
`ndctl create-namespace --mode={{fsdax}}`
|
||||
|
||||
- Change the mode of a namespace to 'raw':
|
||||
- Change the mode of a namespace to `raw`:
|
||||
|
||||
`ndctl create-namespace --reconfigure={{namespaceX.Y}} --mode={{raw}}`
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
`ndctl list -vvv --namespace={{namespaceX.Y}}`
|
||||
|
||||
- Run a monitor to watch for SMART health events for NVDIMMs on the 'ACPI.NFIT' bus:
|
||||
- Run a monitor to watch for SMART health events for NVDIMMs on the `ACPI.NFIT` bus:
|
||||
|
||||
`ndctl monitor --bus={{ACPI.NFIT}}`
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
|
||||
`rdesktop -u {{username}} -p {{password}} -f {{host:port}}`
|
||||
|
||||
- Use the customed resolution (use the letter 'x' between the number):
|
||||
- Use a custom resolution (use the letter `x` between the numbers):
|
||||
|
||||
`rdesktop -u {{username}} -p {{password}} -g 1366x768 {{host:port}}`
|
||||
`rdesktop -u {{username}} -p {{password}} -g {{1366}}x{{768}} {{host:port}}`
|
||||
|
||||
- Connect to a remote computer using domain user:
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
> Note: This page refers to the command from the `util-linux` package.
|
||||
> More information: <https://manned.org/rename>.
|
||||
|
||||
- Rename files using simple substitutions (substitute 'foo' with 'bar' wherever found):
|
||||
- Rename files using simple substitutions (substitute `foo` with `bar` wherever found):
|
||||
|
||||
`rename {{foo}} {{bar}} {{*}}`
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# virt-viewer
|
||||
|
||||
> Minimal graphical interface for a virtual machine (VM).
|
||||
> Note: 'domain' refers to the name, UUID or ID for the existing VMs.
|
||||
> Note: `domain` refers to the name, UUID or ID for the existing VMs.
|
||||
> See also: `virsh`.
|
||||
> More information: <https://manned.org/virt-viewer>.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# virt-xml
|
||||
|
||||
> Edit libvirt Domain XML files with explicit command-line options.
|
||||
> Note: 'domain' refers to the name, UUID or ID for the existing VMs.
|
||||
> Note: `domain` refers to the name, UUID or ID for the existing VMs.
|
||||
> See also: `virsh`.
|
||||
> More information: <https://github.com/virt-manager/virt-manager/blob/main/man/virt-xml.rst>.
|
||||
|
||||
|
||||
@@ -19,6 +19,6 @@
|
||||
|
||||
`yaourt -Ss {{query}}`
|
||||
|
||||
- List installed packages, versions, and repositories (AUR packages will be listed under the repository name 'local'):
|
||||
- List installed packages, versions, and repositories (AUR packages will be listed under the repository name `local`):
|
||||
|
||||
`yaourt -Q`
|
||||
|
||||
+2
-2
@@ -4,9 +4,9 @@
|
||||
> See also: `head`.
|
||||
> More information: <https://keith.github.io/xcode-man-pages/tail.1.html>.
|
||||
|
||||
- Show last 'count' lines in file:
|
||||
- Show last 8 lines in file:
|
||||
|
||||
`tail -n {{8}} {{path/to/file}}`
|
||||
`tail -n 8 {{path/to/file}}`
|
||||
|
||||
- Print a file from a specific line number:
|
||||
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@
|
||||
|
||||
`valet park`
|
||||
|
||||
- View 'parked' paths:
|
||||
- View "parked" paths:
|
||||
|
||||
`valet paths`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user