diff --git a/pages/common/aria2c.md b/pages/common/aria2c.md index a13b70c2e3..7f20130cac 100644 --- a/pages/common/aria2c.md +++ b/pages/common/aria2c.md @@ -18,7 +18,7 @@ - Download the same file from different mirrors and verify the checksum of the downloaded file: -`aria2c --checksum {{sha-256}}={{hash}} "{{url1}}" "{{url2}}" "{{urlN}}"` +`aria2c --checksum {{sha-256}}={{hash}} {{"url1" "url2" ...}}` - Download the URIs listed in a file with a specific number of parallel downloads: diff --git a/pages/common/eslint.md b/pages/common/eslint.md index e9149e8b0a..6aa4d564a6 100644 --- a/pages/common/eslint.md +++ b/pages/common/eslint.md @@ -17,4 +17,4 @@ - Lint using the specified configuration file: -`eslint {{[-c|--config]}} {{path/to/config_file}} {{path/to/file1.js path/to/file2.js}}` +`eslint {{[-c|--config]}} {{path/to/config_file}} {{path/to/file1.js path/to/file2.js ...}}` diff --git a/pages/common/git-daemon.md b/pages/common/git-daemon.md index 4f2abff4f7..263587127e 100644 --- a/pages/common/git-daemon.md +++ b/pages/common/git-daemon.md @@ -5,7 +5,7 @@ - Launch a Git daemon with a whitelisted set of directories: -`git daemon --export-all {{path/to/directory1}} {{path/to/directory2}}` +`git daemon --export-all {{path/to/directory1 path/to/directory2 ...}}` - Launch a Git daemon with a specific base directory and allow pulling from all sub-directories that look like Git repositories: diff --git a/pages/common/hardhat.md b/pages/common/hardhat.md index 5dfef48722..7d90e8aa9d 100644 --- a/pages/common/hardhat.md +++ b/pages/common/hardhat.md @@ -21,7 +21,7 @@ - Run all given test files: -`hardhat test {{path/to/file1.js}} {{path/to/file2.js}}` +`hardhat test {{path/to/file1.js path/to/file2.js ...}}` - Start a local Ethereum JSON-RPC node for development: diff --git a/pages/common/jdupes.md b/pages/common/jdupes.md index 3109cb7b60..9b896e36e0 100644 --- a/pages/common/jdupes.md +++ b/pages/common/jdupes.md @@ -9,7 +9,7 @@ - Search multiple directories: -`jdupes {{directory1}} {{directory2}}` +`jdupes {{directory1 directory2 ...}}` - Search all directories recursively: diff --git a/pages/common/mutt.md b/pages/common/mutt.md index 3093f81e4c..46b7cd5650 100644 --- a/pages/common/mutt.md +++ b/pages/common/mutt.md @@ -13,7 +13,7 @@ - Send an email with files attached: -`mutt -a {{file1}} {{file2}} -- {{recipient@example.com}}` +`mutt -a {{file1 file2 ...}} -- {{recipient@example.com}}` - Specify a file to include as the message body: diff --git a/pages/common/ocamlfind.md b/pages/common/ocamlfind.md index 1c4619e0f8..3a1941fcc4 100644 --- a/pages/common/ocamlfind.md +++ b/pages/common/ocamlfind.md @@ -6,11 +6,11 @@ - Compile a source file to a native binary and link with packages: -`ocamlfind ocamlopt -package {{package1}},{{package2}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}` +`ocamlfind ocamlopt -package {{package1,package2,...}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}` - Compile a source file to a bytecode binary and link with packages: -`ocamlfind ocamlc -package {{package1}},{{package2}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}` +`ocamlfind ocamlc -package {{package1,package2,...}} -linkpkg -o {{path/to/executable}} {{path/to/source.ml}}` - Cross-compile for a different platform: diff --git a/pages/common/picard.md b/pages/common/picard.md index da46202240..38cbc32bde 100644 --- a/pages/common/picard.md +++ b/pages/common/picard.md @@ -9,7 +9,7 @@ - Open a set of files: -`picard {{path/to/file1.mp3}} {{path/to/file2.mp3}}` +`picard {{path/to/file1.mp3 path/to/file2.mp3 ...}}` - Display the version of Picard installed: diff --git a/pages/common/ppmmix.md b/pages/common/ppmmix.md index a6154221b6..d8c9aac59b 100644 --- a/pages/common/ppmmix.md +++ b/pages/common/ppmmix.md @@ -5,4 +5,4 @@ - Blend the specified PPM images using fadefactor to control the weight of each image: -`ppmmix {{fadefactor}} {{path/to/input_file1.ppm}} {{path/to/input_file2.ppm}} > {{path/to/output_file.ppm}}` +`ppmmix {{fadefactor}} {{path/to/input_file1.ppm path/to/input_file2.ppm ...}} > {{path/to/output_file.ppm}}` diff --git a/pages/common/svn-changelist.md b/pages/common/svn-changelist.md index 37014b83a5..44b1291e77 100644 --- a/pages/common/svn-changelist.md +++ b/pages/common/svn-changelist.md @@ -5,11 +5,11 @@ - Add files to a changelist, creating the changelist if it does not exist: -`svn changelist {{changelist_name}} {{path/to/file1}} {{path/to/file2}}` +`svn changelist {{changelist_name}} {{path/to/file1 path/to/file2 ...}}` - Remove files from a changelist: -`svn changelist --remove {{path/to/file1}} {{path/to/file2}}` +`svn changelist --remove {{path/to/file1 path/to/file2 ...}}` - Remove the whole changelist at once: diff --git a/pages/common/uv-remove.md b/pages/common/uv-remove.md index 5eb8be46f6..1fe9598023 100644 --- a/pages/common/uv-remove.md +++ b/pages/common/uv-remove.md @@ -9,7 +9,7 @@ - Remove multiple dependencies: -`uv remove {{package1}} {{package2}}` +`uv remove {{package1 package2 ...}}` - Remove a development dependency: diff --git a/pages/common/vgmstream_cli.md b/pages/common/vgmstream_cli.md index 376acbfb59..e32e9577f3 100644 --- a/pages/common/vgmstream_cli.md +++ b/pages/common/vgmstream_cli.md @@ -21,7 +21,7 @@ - Convert multiple files to `bgm_(original name).wav` (Default `-o` pattern is `?f.wav`): -`vgmstream_cli -o {{path/to/bgm_?f.wav}} {{path/to/file1.adc}} {{path/to/file2.adc}}` +`vgmstream_cli -o {{path/to/bgm_?f.wav}} {{path/to/file1.adc path/to/file2.adc ...}}` - Play the file looping endlessly (`channels` and `rate` must match metadata): diff --git a/pages/common/yacas.md b/pages/common/yacas.md index b94d789676..4bce17de68 100644 --- a/pages/common/yacas.md +++ b/pages/common/yacas.md @@ -13,15 +13,15 @@ - While in a `yacas` session, display an example: -`{{Example()}};` +`Example();` - Quit from a `yacas` session: -`{{quit}}` +`quit` - Execute one or more `yacas` scripts (without terminal or prompts), then exit: -`yacas -p -c {{path/to/script1}} {{path/to/script2}}` +`yacas -p -c {{path/to/script1 path/to/script2 ...}}` - Execute and print the result of one statement, then exit: diff --git a/pages/common/zeek.md b/pages/common/zeek.md index 3492b32a01..7e99cc693c 100644 --- a/pages/common/zeek.md +++ b/pages/common/zeek.md @@ -10,7 +10,7 @@ - Analyze live traffic from a network interface and load custom scripts: -`sudo zeek --iface {{interface}} {{script1}} {{script2}}` +`sudo zeek --iface {{interface}} {{script1 script2 ...}}` - Analyze live traffic from a network interface, without loading any scripts: diff --git a/pages/linux/edquota.md b/pages/linux/edquota.md index 09c5596fcd..578555467a 100644 --- a/pages/linux/edquota.md +++ b/pages/linux/edquota.md @@ -26,4 +26,4 @@ - Duplicate a quota to other users: -`sudo edquota {{[-p|--prototype]}} {{reference_user}} {{destination_user1}} {{destination_user2}}` +`sudo edquota {{[-p|--prototype]}} {{reference_user}} {{destination_user1 destination_user2 ...}}` diff --git a/pages/linux/pacman-upgrade.md b/pages/linux/pacman-upgrade.md index cc40a6103e..7bd8fa4542 100644 --- a/pages/linux/pacman-upgrade.md +++ b/pages/linux/pacman-upgrade.md @@ -6,7 +6,7 @@ - Install one or more packages from files: -`sudo pacman -U {{path/to/package1.pkg.tar.zst}} {{path/to/package2.pkg.tar.zst}}` +`sudo pacman -U {{path/to/package1.pkg.tar.zst path/to/package2.pkg.tar.zst ...}}` - Install a package without prompting: diff --git a/pages/linux/patool.md b/pages/linux/patool.md index 493fb22694..77fa64b18d 100644 --- a/pages/linux/patool.md +++ b/pages/linux/patool.md @@ -10,7 +10,7 @@ - Create an archive: -`patool create {{/path/to/archive}} {{/path/to/file1}} {{/path/to/file2}} {{/path/to/dir1/}} {{/path/to/dir2/}}` +`patool create {{path/to/archive}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` - List contents of an archive: diff --git a/pages/linux/systemd-mount.md b/pages/linux/systemd-mount.md index 39593efa0f..7bb3c6d4ed 100644 --- a/pages/linux/systemd-mount.md +++ b/pages/linux/systemd-mount.md @@ -21,7 +21,7 @@ - Unmount one or more devices: -`systemd-mount {{[-u|--umount]}} {{path/to/mount_point_or_device1}} {{path/to/mount_point_or_device2}}` +`systemd-mount {{[-u|--umount]}} {{path/to/mount_point_or_device1 path/to/mount_point_or_device2 ...}}` - Mount a file system (image or block device) with a specific file system type: