diff --git a/pages/common/atq.md b/pages/common/atq.md index a8f88047e1..19d943d7bb 100644 --- a/pages/common/atq.md +++ b/pages/common/atq.md @@ -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}}` diff --git a/pages/common/aws-cloudformation.md b/pages/common/aws-cloudformation.md index 38f5b9bc83..db56ed9283 100644 --- a/pages/common/aws-cloudformation.md +++ b/pages/common/aws-cloudformation.md @@ -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}}` diff --git a/pages/common/compgen.md b/pages/common/compgen.md index 88f7b6aab8..16779e233c 100644 --- a/pages/common/compgen.md +++ b/pages/common/compgen.md @@ -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}}` diff --git a/pages/common/crane-pull.md b/pages/common/crane-pull.md index adde06c0cc..de89f9c1f9 100644 --- a/pages/common/crane-pull.md +++ b/pages/common/crane-pull.md @@ -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}}` diff --git a/pages/common/csvtool.md b/pages/common/csvtool.md index 05f02d9789..8928b45f1a 100644 --- a/pages/common/csvtool.md +++ b/pages/common/csvtool.md @@ -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}}` diff --git a/pages/common/fisher.md b/pages/common/fisher.md index 5060f8f3cd..2c1c4759b9 100644 --- a/pages/common/fisher.md +++ b/pages/common/fisher.md @@ -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: . - 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` diff --git a/pages/common/gatsby.md b/pages/common/gatsby.md index 691a61241e..0700accf0a 100644 --- a/pages/common/gatsby.md +++ b/pages/common/gatsby.md @@ -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}}` diff --git a/pages/common/killall.md b/pages/common/killall.md index 3ad22afbd2..bc6cac7ef6 100644 --- a/pages/common/killall.md +++ b/pages/common/killall.md @@ -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]}}` diff --git a/pages/common/kubectl.md b/pages/common/kubectl.md index a45d2b16ad..9b0d09b712 100644 --- a/pages/common/kubectl.md +++ b/pages/common/kubectl.md @@ -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` diff --git a/pages/common/screenfetch.md b/pages/common/screenfetch.md index 7afd95d908..61c0f8094f 100644 --- a/pages/common/screenfetch.md +++ b/pages/common/screenfetch.md @@ -7,7 +7,7 @@ `screenfetch` -- Take a screenshot (requires 'scrot'): +- Take a screenshot (requires `scrot`): `screenfetch -s` diff --git a/pages/common/tail.md b/pages/common/tail.md index 9731fc3536..b1e7f4b6d4 100644 --- a/pages/common/tail.md +++ b/pages/common/tail.md @@ -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}}` diff --git a/pages/common/tree.md b/pages/common/tree.md index a089e2c0ab..41b3343e7a 100644 --- a/pages/common/tree.md +++ b/pages/common/tree.md @@ -3,7 +3,7 @@ > Show the contents of the current directory as a tree. > More information: . -- 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}}` diff --git a/pages/linux/ndctl.md b/pages/linux/ndctl.md index 583eaa69a5..33c8e0dc37 100644 --- a/pages/linux/ndctl.md +++ b/pages/linux/ndctl.md @@ -3,11 +3,11 @@ > Utility for managing Non-Volatile DIMMs. > More information: . -- 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}}` diff --git a/pages/linux/rdesktop.md b/pages/linux/rdesktop.md index aaef8fc27e..150d55eb5f 100644 --- a/pages/linux/rdesktop.md +++ b/pages/linux/rdesktop.md @@ -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: diff --git a/pages/linux/rename.util.md b/pages/linux/rename.util.md index d8cb3489d8..e872eb40be 100644 --- a/pages/linux/rename.util.md +++ b/pages/linux/rename.util.md @@ -5,7 +5,7 @@ > Note: This page refers to the command from the `util-linux` package. > More information: . -- 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}} {{*}}` diff --git a/pages/linux/virt-viewer.md b/pages/linux/virt-viewer.md index 2546e864e6..b32e81e9a6 100644 --- a/pages/linux/virt-viewer.md +++ b/pages/linux/virt-viewer.md @@ -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: . diff --git a/pages/linux/virt-xml.md b/pages/linux/virt-xml.md index ea71dfba3b..e01370ad7e 100644 --- a/pages/linux/virt-xml.md +++ b/pages/linux/virt-xml.md @@ -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: . diff --git a/pages/linux/yaourt.md b/pages/linux/yaourt.md index 85e61e0cc5..84d74e5996 100644 --- a/pages/linux/yaourt.md +++ b/pages/linux/yaourt.md @@ -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` diff --git a/pages/osx/tail.md b/pages/osx/tail.md index 508050f8d8..b517f1a375 100644 --- a/pages/osx/tail.md +++ b/pages/osx/tail.md @@ -4,9 +4,9 @@ > See also: `head`. > More information: . -- 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: diff --git a/pages/osx/valet.md b/pages/osx/valet.md index 1e0aee0920..3a7afdb99c 100644 --- a/pages/osx/valet.md +++ b/pages/osx/valet.md @@ -11,7 +11,7 @@ `valet park` -- View 'parked' paths: +- View "parked" paths: `valet paths`