diff --git a/pages/common/crane-export.md b/pages/common/crane-export.md index 623c66e33d..0be8b5810b 100644 --- a/pages/common/crane-export.md +++ b/pages/common/crane-export.md @@ -13,4 +13,4 @@ - Read image from `stdin`: -`crane export - {{path/to/filename}}` +`crane export - {{path/to/file}}` diff --git a/pages/common/crane-push.md b/pages/common/crane-push.md index e4ba3d4288..a8d4edf19d 100644 --- a/pages/common/crane-push.md +++ b/pages/common/crane-push.md @@ -9,7 +9,7 @@ - Path to file with list of published image references: -`crane push {{path/to/tarball}} {{image_name}} --image-refs {{path/to/filename}}` +`crane push {{path/to/tarball}} {{image_name}} --image-refs {{path/to/file}}` - Push a collection of images as a single index (required if path has multiple images): diff --git a/pages/common/csc.md b/pages/common/csc.md index bd95f594cb..c9ab6f8b6e 100644 --- a/pages/common/csc.md +++ b/pages/common/csc.md @@ -9,7 +9,7 @@ - Specify the output filename: -`csc /out:{{path/to/filename}} {{path/to/input_file.cs}}` +`csc /out:{{path/to/file}} {{path/to/input_file.cs}}` - Compile into a `.dll` library instead of an executable: diff --git a/pages/common/exo-storage.md b/pages/common/exo-storage.md index 31b272ea4d..ac8b4e5966 100644 --- a/pages/common/exo-storage.md +++ b/pages/common/exo-storage.md @@ -9,7 +9,7 @@ - Upload a file to a bucket: -`exo storage put {{file_path}} {{bucket_name}}/{{prefix/}}` +`exo storage put {{path/to/file}} {{bucket_name}}/{{prefix/}}` - List the objects within a bucket: diff --git a/pages/common/fossil-init.md b/pages/common/fossil-init.md index d84db964c6..a18b201aba 100644 --- a/pages/common/fossil-init.md +++ b/pages/common/fossil-init.md @@ -6,4 +6,4 @@ - Create a new repository in a named file: -`fossil init {{path/to/filename}}` +`fossil init {{path/to/file}}` diff --git a/pages/common/gitlint.md b/pages/common/gitlint.md index 9e211fd978..e3cfe7bf1a 100644 --- a/pages/common/gitlint.md +++ b/pages/common/gitlint.md @@ -21,7 +21,7 @@ - Path to a file containing a commit-msg: -`gitlint --msg-filename {{path/to/filename}}` +`gitlint --msg-filename {{path/to/file}}` - Read staged commit meta-info from the local repository: diff --git a/pages/common/gnmic-set.md b/pages/common/gnmic-set.md index 05694e250a..7ee1cbe848 100644 --- a/pages/common/gnmic-set.md +++ b/pages/common/gnmic-set.md @@ -5,16 +5,16 @@ - Update the value of a path: -`gnmic {{[-a|--address]}} {{ip:port}} set --update-path {{path}} --update-value {{value}}` +`gnmic {{[-a|--address]}} {{ip:port}} set --update-path {{path/to/directory}} --update-value {{value}}` - Update the value of a path to match the contents of a JSON file: -`gnmic {{[-a|--address]}} {{ip:port}} set --update-path {{path}} --update-file {{filepath}}` +`gnmic {{[-a|--address]}} {{ip:port}} set --update-path {{path/to/directory}} --update-file {{path/to/file}}` - Replace the value of a path to match the contents of a JSON file: -`gnmic {{[-a|--address]}} {{ip:port}} set --replace-path {{path}} --replace-file {{filepath}}` +`gnmic {{[-a|--address]}} {{ip:port}} set --replace-path {{path/to/directory}} --replace-file {{path/to/file}}` - Delete the node at a given path: -`gnmic {{[-a|--address]}} {{ip:port}} set --delete {{path}}` +`gnmic {{[-a|--address]}} {{ip:port}} set --delete {{path/to/directory}}` diff --git a/pages/common/gnuplot.md b/pages/common/gnuplot.md index 7895933c58..40a7a5c5a5 100644 --- a/pages/common/gnuplot.md +++ b/pages/common/gnuplot.md @@ -13,7 +13,7 @@ - Set the output format by executing a command before loading the definition file: -`gnuplot -e "{{set output "path/to/filename.png" size 1024,768}}" {{path/to/definition.plt}}` +`gnuplot -e "{{set output "path/to/file.png" size 1024,768}}" {{path/to/definition.plt}}` - Persist the graph plot preview window after gnuplot exits: diff --git a/pages/common/inkscape.md b/pages/common/inkscape.md index b07e134322..ced6a714a1 100644 --- a/pages/common/inkscape.md +++ b/pages/common/inkscape.md @@ -10,15 +10,15 @@ - Export an SVG file into a bitmap with the default format (PNG) and the default resolution (96 DPI): -`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/filename.png}}` +`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/file.png}}` - Export an SVG file into a bitmap of 600x400 pixels (aspect ratio distortion may occur): -`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/filename.png}} {{[-w|--export-width]}} 600 {{[-h|--export-height]}} 400` +`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/file.png}} {{[-w|--export-width]}} 600 {{[-h|--export-height]}} 400` - Export the drawing (bounding box of all objects) of an SVG file into a bitmap: -`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/filename.png}} {{[-D|--export-area-drawing]}}` +`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/file.png}} {{[-D|--export-area-drawing]}}` - Export a single object, given its ID, into a bitmap: @@ -26,7 +26,7 @@ - Export an SVG document to PDF, converting all texts to paths: -`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/filename.pdf}} {{[-T|--export-text-to-path]}}` +`inkscape {{path/to/file.svg}} {{[-o|--export-filename]}} {{path/to/file.pdf}} {{[-T|--export-text-to-path]}}` - Duplicate the object with id="path123", rotate the duplicate 90 degrees, save the file, and quit Inkscape: diff --git a/pages/common/jdeps.md b/pages/common/jdeps.md index a2ed96b4c6..ee6b0e1566 100644 --- a/pages/common/jdeps.md +++ b/pages/common/jdeps.md @@ -5,19 +5,19 @@ - Analyze the dependencies of a `.jar` or `.class` file: -`jdeps {{path/to/filename.class}}` +`jdeps {{path/to/file.class}}` - Print a summary of all dependencies of a specific `.jar` file: -`jdeps {{path/to/filename.jar}} -summary` +`jdeps {{path/to/file.jar}} -summary` - Print all class-level dependencies of a `.jar` file: -`jdeps {{path/to/filename.jar}} -verbose` +`jdeps {{path/to/file.jar}} -verbose` - Output the results of the analysis in a DOT file into a specific directory: -`jdeps {{path/to/filename.jar}} -dotoutput {{path/to/directory}}` +`jdeps {{path/to/file.jar}} -dotoutput {{path/to/directory}}` - Display help: diff --git a/pages/common/kubectl-apply.md b/pages/common/kubectl-apply.md index 39026309c0..b9dc355a88 100644 --- a/pages/common/kubectl-apply.md +++ b/pages/common/kubectl-apply.md @@ -6,7 +6,7 @@ - Apply a configuration to a resource by file name: -`kubectl apply {{[-f|--filename]}} {{path/to/filename}}` +`kubectl apply {{[-f|--filename]}} {{path/to/file}}` - Apply a configuration to a resource from `kustomization.yaml` in a directory: @@ -18,12 +18,12 @@ - Edit the latest last-applied-configuration annotations of resources from the default editor: -`kubectl apply edit-last-applied {{[-f|--filename]}} {{path/to/filename}}` +`kubectl apply edit-last-applied {{[-f|--filename]}} {{path/to/file}}` - Set the latest last-applied-configuration annotations by setting it to match the contents of a file: -`kubectl apply set-last-applied {{[-f|--filename]}} {{path/to/filename}}` +`kubectl apply set-last-applied {{[-f|--filename]}} {{path/to/file}}` - View the latest last-applied-configuration annotations by type/name or file: -`kubectl apply view-last-applied {{[-f|--filename]}} {{path/to/filename}}` +`kubectl apply view-last-applied {{[-f|--filename]}} {{path/to/file}}` diff --git a/pages/common/lp.md b/pages/common/lp.md index c0a4a512c7..5d48727a04 100644 --- a/pages/common/lp.md +++ b/pages/common/lp.md @@ -9,19 +9,19 @@ - Print a file to the default printer: -`lp {{path/to/filename}}` +`lp {{path/to/file}}` - Print a file to a named printer (see `lpstat` command): -`lp -d {{printer_name}} {{path/to/filename}}` +`lp -d {{printer_name}} {{path/to/file}}` - Print `n` copies of a file to the default printer: -`lp -n {{n}} {{path/to/filename}}` +`lp -n {{n}} {{path/to/file}}` - Print only certain pages to the default printer (print pages 1, 3-5, and 16): -`lp -P 1,3-5,16 {{path/to/filename}}` +`lp -P 1,3-5,16 {{path/to/file}}` - Resume printing a job: diff --git a/pages/common/mail.md b/pages/common/mail.md index f1d2596bcb..5ae0a671c9 100644 --- a/pages/common/mail.md +++ b/pages/common/mail.md @@ -14,7 +14,7 @@ - Send an email that contains file content: -`mail --subject "{{$HOSTNAME filename.txt}}" {{to_user@example.com}} < {{path/to/filename.txt}}` +`mail < {{path/to/file.txt}} --subject "{{$HOSTNAME filename.txt}}" {{to_user@example.com}}` - Send a `tar.gz` file as an attachment: diff --git a/pages/common/neo4j-admin.md b/pages/common/neo4j-admin.md index 8a5b873304..2456876b92 100644 --- a/pages/common/neo4j-admin.md +++ b/pages/common/neo4j-admin.md @@ -26,7 +26,7 @@ - Load a database from a specified archive file through `stdin`: -`neo4j-admin database load --from-stdin {{database_name}} --overwrite-destination=true < {{path/to/filename.dump}}` +`neo4j-admin < {{path/to/file.dump}} database load --from-stdin {{database_name}} --overwrite-destination=true` - Display help: diff --git a/pages/common/nix-build.3.md b/pages/common/nix-build.3.md index ad3f034982..c8d3cc94b3 100644 --- a/pages/common/nix-build.3.md +++ b/pages/common/nix-build.3.md @@ -14,7 +14,7 @@ - Build the default package from a flake in some directory: -`nix build {{./path/to/directory}}` +`nix build {{path/to/directory}}` - Build a package without making the `result` symlink, instead printing the store path to the `stdout`: diff --git a/pages/common/nix-profile.md b/pages/common/nix-profile.md index 5ce247843c..d437a0350e 100644 --- a/pages/common/nix-profile.md +++ b/pages/common/nix-profile.md @@ -9,7 +9,7 @@ - Install a package from a flake on GitHub into a custom profile: -`nix profile install {{github:owner/repo/pkg}} --profile {{./path/to/directory}}` +`nix profile install {{github:owner/repo/pkg}} --profile {{path/to/directory}}` - List packages currently installed in the default profile: diff --git a/pages/common/pageres.md b/pages/common/pageres.md index 11466c309e..ad9984ae53 100644 --- a/pages/common/pageres.md +++ b/pages/common/pageres.md @@ -25,4 +25,4 @@ - Capture a screenshot of a local file: -`pageres {{local_file_path.html}} {{1366x768}}` +`pageres {{path/to/local_file.html}} {{1366x768}}` diff --git a/pages/common/papermc.md b/pages/common/papermc.md index 0c11e17655..04ee36f25b 100644 --- a/pages/common/papermc.md +++ b/pages/common/papermc.md @@ -21,7 +21,7 @@ - Restore world data from a backup: -`papermc restore {{path/to/filename}}` +`papermc restore {{path/to/file}}` - Display help: diff --git a/pages/common/quilt.md b/pages/common/quilt.md index 56b8031281..d9dc0588b3 100644 --- a/pages/common/quilt.md +++ b/pages/common/quilt.md @@ -5,7 +5,7 @@ - Import an existing patch from a file: -`quilt import {{path/to/filename.patch}}` +`quilt import {{path/to/file.patch}}` - Create a new patch: diff --git a/pages/common/vboxmanage-export.md b/pages/common/vboxmanage-export.md index 80ee8449df..08e7d82bc9 100644 --- a/pages/common/vboxmanage-export.md +++ b/pages/common/vboxmanage-export.md @@ -5,7 +5,7 @@ - Specify the target OVA file: -`VBoxManage export --output {{path/to/filename.ova}}` +`VBoxManage export --output {{path/to/file.ova}}` - Export in OVF 0.9 legacy mode: diff --git a/pages/common/vboxmanage-registervm.md b/pages/common/vboxmanage-registervm.md index 216096c347..8d4c9487c3 100644 --- a/pages/common/vboxmanage-registervm.md +++ b/pages/common/vboxmanage-registervm.md @@ -5,12 +5,12 @@ - Register an existing VM: -`VBoxManage registervm {{path/to/filename.vbox}}` +`VBoxManage registervm {{path/to/file.vbox}}` - Supply the encryption password file of the VM: -`VBoxManage registervm {{path/to/filename.vbox}} --password {{path/to/password_file}}` +`VBoxManage registervm {{path/to/file.vbox}} --password {{path/to/password_file}}` - Prompt for the encryption password on the command-line: -`VBoxManage registervm {{path/to/filename.vbox}} --password -` +`VBoxManage registervm {{path/to/file.vbox}} --password -` diff --git a/pages/linux/debman.md b/pages/linux/debman.md index 44748a3606..c4204b347e 100644 --- a/pages/linux/debman.md +++ b/pages/linux/debman.md @@ -13,4 +13,4 @@ - Read a man page in a `.deb` [f]ile: -`debman -f {{path/to/filename.deb}} {{command}}` +`debman -f {{path/to/file.deb}} {{command}}` diff --git a/pages/linux/nixos-container.md b/pages/linux/nixos-container.md index 38c7395cf9..8dcbe138d0 100644 --- a/pages/linux/nixos-container.md +++ b/pages/linux/nixos-container.md @@ -9,7 +9,7 @@ - Create a NixOS container with a specific configuration file: -`sudo nixos-container create {{container_name}} --config-file {{nix_config_file_path}}` +`sudo nixos-container create {{container_name}} --config-file {{path/to/nix_config_file}}` - Start, stop, terminate, or destroy a specific container: diff --git a/pages/linux/unzipsfx.md b/pages/linux/unzipsfx.md index 6feb8e9836..ee937caec4 100644 --- a/pages/linux/unzipsfx.md +++ b/pages/linux/unzipsfx.md @@ -17,7 +17,7 @@ - Print content of a file in the self-extracting binary without extraction: -`{{./path/to/binary}} -c {{path/to/filename}}` +`{{./path/to/binary}} -c {{path/to/file}}` - Print comments on Zip archive in the self-extracting binary: diff --git a/pages/osx/pkgutil.md b/pages/osx/pkgutil.md index b953e6e94f..afebb67ab7 100644 --- a/pages/osx/pkgutil.md +++ b/pages/osx/pkgutil.md @@ -9,7 +9,7 @@ - Verify cryptographic signatures of a package file: -`pkgutil --check-signature {{path/to/filename.pkg}}` +`pkgutil --check-signature {{path/to/file.pkg}}` - List all the files for an installed package given its ID: @@ -17,4 +17,4 @@ - Extract the contents of a package file into a directory: -`pkgutil --expand-full {{path/to/filename.pkg}} {{path/to/directory}}` +`pkgutil --expand-full {{path/to/file.pkg}} {{path/to/directory}}`