From 09b85518cb80142edc218c8b0f8ca559a6e1b988 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sun, 27 Apr 2025 00:52:05 +0300 Subject: [PATCH 1/2] qr: refresh page (#16266) * Update qr.md * Update qr.md * Update pages/common/qr.md Co-authored-by: Wiktor Perskawiec --------- Co-authored-by: Wiktor Perskawiec --- pages/common/qr.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pages/common/qr.md b/pages/common/qr.md index 804729702c..f97fd0a453 100644 --- a/pages/common/qr.md +++ b/pages/common/qr.md @@ -5,8 +5,16 @@ - Generate a QR code: -`echo "{{data}}" | qr` +`qr "{{data}}"` -- Specify the error correction level (defaults to M): +- Specify the error correction level (defaults to `M`): -`echo "{{data}}" | qr --error-correction={{L|M|Q|H}}` +`qr --error-correction {{L|M|Q|H}} "{{data}}"` + +- Generate a QR code from the output of another command: + +`{{command}} | qr` + +- Save the QR code as a PNG image: + +`qr "{{data}}" > {{path/to/file.png}}` From 611d2c9a0445a4c9e73c4dcba40ca668ded3bcc9 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sun, 27 Apr 2025 10:35:40 +0300 Subject: [PATCH 2/2] linux*: refresh old pages part 2 (#16263) Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages/common/mpv.md | 2 +- pages/linux/abbr.md | 6 +++--- pages/linux/ascii.md | 2 +- pages/linux/asciiart.md | 8 ++++---- pages/linux/autopkgtest.md | 4 ++-- pages/linux/blurlock.md | 6 +++--- pages/linux/debsecan.md | 2 +- pages/linux/eyed3.md | 6 +++--- pages/linux/fprintd-delete.md | 2 +- pages/linux/fprintd-enroll.md | 4 ++-- pages/linux/fprintd-verify.md | 4 ++-- pages/linux/i3exit.md | 2 +- pages/linux/i3lock.md | 14 +++++++------- pages/linux/kwrite.md | 4 ++-- pages/linux/ldapdomaindump.md | 10 +++++----- pages/linux/logwatch.md | 2 +- pages/linux/lrunzip.md | 24 +++--------------------- pages/linux/lrzuntar.md | 24 +++--------------------- pages/linux/lxc-create.md | 2 +- pages/linux/lxc-network.md | 2 +- pages/linux/lxc-profile.md | 4 ++-- pages/linux/manpath.md | 2 +- pages/linux/microcom.md | 4 ++-- pages/linux/mssh.md | 4 ++-- pages/linux/nitrogen.md | 2 +- pages/linux/powerprofilesctl.md | 2 +- pages/linux/pstree.md | 2 +- pages/linux/slapt-src.md | 10 +++++----- pages/linux/spi.md | 8 ++++---- pages/linux/steghide.md | 10 +++++----- pages/linux/tomb.md | 2 +- pages/linux/wajig.md | 2 +- pages/linux/xcowsay.md | 8 ++++---- pages/linux/xwinwrap.md | 8 ++++---- 34 files changed, 81 insertions(+), 117 deletions(-) diff --git a/pages/common/mpv.md b/pages/common/mpv.md index d93a1bead7..ff45d33f61 100644 --- a/pages/common/mpv.md +++ b/pages/common/mpv.md @@ -2,7 +2,7 @@ > A audio/video player based on MPlayer. > See also: `mplayer`, `vlc`. -> More information: . +> More information: . - Play a video or audio from a URL or file: diff --git a/pages/linux/abbr.md b/pages/linux/abbr.md index 125fd93b7b..22289b66b8 100644 --- a/pages/linux/abbr.md +++ b/pages/linux/abbr.md @@ -6,7 +6,7 @@ - Add a new abbreviation: -`abbr --add {{abbreviation_name}} {{command}} {{command_arguments}}` +`abbr {{[-a|--add]}} {{abbreviation_name}} {{command}} {{command_arguments}}` - Rename an existing abbreviation: @@ -14,8 +14,8 @@ - Erase an existing abbreviation: -`abbr --erase {{abbreviation_name}}` +`abbr {{[-e|--erase]}} {{abbreviation_name}}` - Import the abbreviations defined on another host over SSH: -`ssh {{host_name}} abbr --show | source` +`ssh {{host_name}} abbr {{[-s|--show]}} | source` diff --git a/pages/linux/ascii.md b/pages/linux/ascii.md index 0bff158949..44e59cb673 100644 --- a/pages/linux/ascii.md +++ b/pages/linux/ascii.md @@ -1,7 +1,7 @@ # ascii > Show ASCII character aliases. -> More information: . +> More information: . - Show ASCII aliases of a character: diff --git a/pages/linux/asciiart.md b/pages/linux/asciiart.md index cd5792b872..99d0f5a028 100644 --- a/pages/linux/asciiart.md +++ b/pages/linux/asciiart.md @@ -13,16 +13,16 @@ - Choose the output width (default is 100): -`asciiart --width {{50}} {{path/to/image.jpg}}` +`asciiart {{[-w|--width]}} {{50}} {{path/to/image.jpg}}` - Colorize the ASCII output: -`asciiart --color {{path/to/image.jpg}}` +`asciiart {{[-c|--color]}} {{path/to/image.jpg}}` - Choose the output format (default format is text): -`asciiart --format {{text|html}} {{path/to/image.jpg}}` +`asciiart {{[-f|--format]}} {{text|html}} {{path/to/image.jpg}}` - Invert the character map: -`asciiart --invert-chars {{path/to/image.jpg}}` +`asciiart {{[-i|--invert-chars]}} {{path/to/image.jpg}}` diff --git a/pages/linux/autopkgtest.md b/pages/linux/autopkgtest.md index e1f004ed64..3f0c02ea39 100644 --- a/pages/linux/autopkgtest.md +++ b/pages/linux/autopkgtest.md @@ -1,7 +1,7 @@ # autopkgtest > Run tests on Debian packages. -> More information: . +> More information: . - Build the package in the current directory and run all tests directly on the system: @@ -21,4 +21,4 @@ - Test the package in the current directory without rebuilding it: -`autopkgtest --no-built-binaries -- {{null}}` +`autopkgtest {{[-B|--no-built-binaries]}} -- {{null}}` diff --git a/pages/linux/blurlock.md b/pages/linux/blurlock.md index 253d7a4d7e..265b979d7b 100644 --- a/pages/linux/blurlock.md +++ b/pages/linux/blurlock.md @@ -10,12 +10,12 @@ - Lock the screen and disable the unlock indicator (removes feedback on keypress): -`blurlock --no-unlock-indicator` +`blurlock {{[-u|--no-unlock-indicator]}}` - Lock the screen and don't hide the mouse pointer: -`blurlock --pointer {{default}}` +`blurlock {{[-p|--pointer]}} {{default}}` - Lock the screen and show the number of failed login attempts: -`blurlock --show-failed-attempts` +`blurlock {{[-f|--show-failed-attempts]}}` diff --git a/pages/linux/debsecan.md b/pages/linux/debsecan.md index 68104f51ec..b0e906f181 100644 --- a/pages/linux/debsecan.md +++ b/pages/linux/debsecan.md @@ -1,7 +1,7 @@ # debsecan > Debian Security Analyzer, a tool to list vulnerabilities on a particular Debian installation. -> More information: . +> More information: . - List vulnerable installed packages on the current host: diff --git a/pages/linux/eyed3.md b/pages/linux/eyed3.md index a4f23009a2..060f236d75 100644 --- a/pages/linux/eyed3.md +++ b/pages/linux/eyed3.md @@ -1,7 +1,7 @@ # eyeD3 > Read and manipulate metadata of MP3 files. -> More information: . +> More information: . - View information about an MP3 file: @@ -9,11 +9,11 @@ - Set the title of an MP3 file: -`eyeD3 --title "{{A Title}}" {{filename.mp3}}` +`eyeD3 {{[-t|--title]}} "{{A Title}}" {{filename.mp3}}` - Set the album of all the MP3 files in a directory: -`eyeD3 --album "{{Album Name}}" {{*.mp3}}` +`eyeD3 {{[-A|--album]}} "{{Album Name}}" {{*.mp3}}` - Set the front cover art for an MP3 file: diff --git a/pages/linux/fprintd-delete.md b/pages/linux/fprintd-delete.md index c14b3fa162..2da3b4fc41 100644 --- a/pages/linux/fprintd-delete.md +++ b/pages/linux/fprintd-delete.md @@ -9,7 +9,7 @@ - Remove a specific fingerprints for a specific user: -`fprintd-delete {{username}} --finger {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|right-index-finger|right-middle-finger|right-ring-finger|right-little-finger}}` +`fprintd-delete {{username}} {{[-f|--finger]}} {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|...}}` - Display help: diff --git a/pages/linux/fprintd-enroll.md b/pages/linux/fprintd-enroll.md index 67dcb9fc4f..4cff8beda0 100644 --- a/pages/linux/fprintd-enroll.md +++ b/pages/linux/fprintd-enroll.md @@ -9,7 +9,7 @@ - Enroll a specific finger for the current user: -`fprintd-enroll --finger {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|right-index-finger|right-middle-finger|right-ring-finger|right-little-finger}}` +`fprintd-enroll {{[-f|--finger]}} {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|...}}` - Enroll the right index finger for a specific user: @@ -17,7 +17,7 @@ - Enroll a specific finger for a specific user: -`fprintd-enroll --finger {{finger_name}} {{username}}` +`fprintd-enroll {{[-f|--finger]}} {{finger_name}} {{username}}` - Display help: diff --git a/pages/linux/fprintd-verify.md b/pages/linux/fprintd-verify.md index 68bf64cf65..bc37d58750 100644 --- a/pages/linux/fprintd-verify.md +++ b/pages/linux/fprintd-verify.md @@ -9,7 +9,7 @@ - Verify a specific fingerprint for the current user: -`fprintd-verify --finger {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|right-index-finger|right-middle-finger|right-ring-finger|right-little-finger}}` +`fprintd-verify {{[-f|--finger]}} {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|...}}` - Verify fingerprints for a specific user: @@ -17,7 +17,7 @@ - Verify a specific fingerprint for a specific user: -`fprintd-verify --finger {{finger_name}} {{username}}` +`fprintd-verify {{[-f|--finger]}} {{finger_name}} {{username}}` - Fail the process if a fingerprint doesn't match with ones stored in the database for the current user: diff --git a/pages/linux/i3exit.md b/pages/linux/i3exit.md index 50873de0f1..a863d05401 100644 --- a/pages/linux/i3exit.md +++ b/pages/linux/i3exit.md @@ -1,7 +1,7 @@ # i3exit > Exit the i3 window manager. -> More information: . +> More information: . - Log out of i3: diff --git a/pages/linux/i3lock.md b/pages/linux/i3lock.md index b90c3ff61a..44871f6d09 100644 --- a/pages/linux/i3lock.md +++ b/pages/linux/i3lock.md @@ -1,7 +1,7 @@ # i3lock > Simple screen locker built for the i3 window manager. -> More information: . +> More information: . - Lock the screen showing a white background: @@ -9,24 +9,24 @@ - Lock the screen with a simple color background (rrggbb format): -`i3lock --color {{0000ff}}` +`i3lock {{[-c|--color]}} {{0000ff}}` - Lock the screen to a PNG background: -`i3lock --image {{path/to/file.png}}` +`i3lock {{[-i|--image]}} {{path/to/file.png}}` - Lock the screen and disable the unlock indicator (removes feedback on keypress): -`i3lock --no-unlock-indicator` +`i3lock {{[-u|--no-unlock-indicator]}}` - Lock the screen and don't hide the mouse pointer: -`i3lock --pointer {{default}}` +`i3lock {{[-p|--pointer]}} {{default}}` - Lock the screen to a PNG background tiled over all monitors: -`i3lock --image {{path/to/file.png}} --tiling` +`i3lock {{[-i|--image]}} {{path/to/file.png}} {{[-t|--tiling]}}` - Lock the screen and show the number of failed login attempts: -`i3lock --show-failed-attempts` +`i3lock {{[-f|--show-failed-attempts]}}` diff --git a/pages/linux/kwrite.md b/pages/linux/kwrite.md index e4c639d0b5..308e15a10e 100644 --- a/pages/linux/kwrite.md +++ b/pages/linux/kwrite.md @@ -2,7 +2,7 @@ > Text editor of the KDE Desktop project. > See also `kate`. -> More information: . +> More information: . - Open a text file: @@ -14,7 +14,7 @@ - Open a text file with a specific encoding: -`kwrite --encoding={{UTF-8}} {{path/to/file}}` +`kwrite --encoding {{UTF-8}} {{path/to/file}}` - Open a text file and navigate to a specific line and column: diff --git a/pages/linux/ldapdomaindump.md b/pages/linux/ldapdomaindump.md index c481adc210..cc478adbb8 100644 --- a/pages/linux/ldapdomaindump.md +++ b/pages/linux/ldapdomaindump.md @@ -2,20 +2,20 @@ > Dump users, computers, groups, OS and membership information via LDAP to HTML, JSON and greppable output. > See also `ldapsearch`. -> More information: . +> More information: . - Dump all information using the given LDAP account: -`ldapdomaindump --user {{domain}}\\{{administrator}} --password {{password|ntlm_hash}} {{hostname|ip}}` +`ldapdomaindump {{[-u|--user]}} {{domain}}\{{username}} {{[-p|--password]}} {{password|ntlm_hash}} {{hostname|ip}}` - Dump all information, resolving computer hostnames: -`ldapdomaindump --resolve --user {{domain}}\\{{administrator}} --password {{password}} {{hostname|ip}}` +`ldapdomaindump {{[-r|--resolve]}} {{[-u|--user]}} {{domain}}\{{username}} {{[-p|--password]}}{{password}} {{hostname|ip}}` - Dump all information, resolving computer hostnames with the selected DNS server: -`ldapdomaindump --resolve --dns-server {{domain_controller_ip}} --user {{domain}}\\{{administrator}} --password {{password}} {{hostname|ip}}` +`ldapdomaindump {{[-r|--resolve]}} {{[-n|--dns-server]}} {{domain_controller_ip}} {{[-u|--user]}} {{domain}}\{{username}} {{[-p|--password]}}{{password}} {{hostname|ip}}` - Dump all information to the given directory without JSON output: -`ldapdomaindump --no-json --outdir {{path/to/directory}} --user {{domain}}\\{{administrator}} --password {{password}} {{hostname|ip}}` +`ldapdomaindump --no-json {{[-o|--outdir]}} {{path/to/directory}} {{[-u|--user]}} {{domain}}\{{username}} {{[-p|--password]}}{{password}} {{hostname|ip}}` diff --git a/pages/linux/logwatch.md b/pages/linux/logwatch.md index 5520d886fa..f13ae90f9c 100644 --- a/pages/linux/logwatch.md +++ b/pages/linux/logwatch.md @@ -9,4 +9,4 @@ - Restrict report to only include information for a selected service: -`logwatch --range {{all}} --service {{apache|pam_unix|etc}}` +`logwatch --range {{all}} --service {{apache|pam_unix|...}}` diff --git a/pages/linux/lrunzip.md b/pages/linux/lrunzip.md index 3944548025..3681539d48 100644 --- a/pages/linux/lrunzip.md +++ b/pages/linux/lrunzip.md @@ -1,25 +1,7 @@ # lrunzip -> A large file decompression program. -> See also: `lrzip`, `lrztar`, `lrzuntar`. -> More information: . +> This command is an alias of `lrzip -d`. -- Decompress a file: +- View documentation for the original command: -`lrunzip {{filename.lrz}}` - -- Decompress a file using a specific number of processor threads: - -`lrunzip -p {{8}} {{filename.lrz}}` - -- Decompress a file and silently overwrite files if they exist: - -`lrunzip -f {{filename.lrz}}` - -- Keep broken or damaged files instead of deleting them when decompressing: - -`lrunzip -K {{filename.lrz}}` - -- Specify output file name and/or path: - -`lrunzip -o {{outfilename}} {{filename.lrz}}` +`tldr lrzip` diff --git a/pages/linux/lrzuntar.md b/pages/linux/lrzuntar.md index 34746a62c1..512f20fc64 100644 --- a/pages/linux/lrzuntar.md +++ b/pages/linux/lrzuntar.md @@ -1,25 +1,7 @@ # lrzuntar -> A wrapper for `lrunzip` to simplify decompression of directories. -> See also: `lrztar`, `lrzip`. -> More information: . +> This command is an alias of `lrztar -d`. -- Decompress from a file to the current directory: +- View documentation for the original command: -`lrzuntar {{path/to/archive.tar.lrz}}` - -- Decompress from a file to the current directory using a specific number of processor threads: - -`lrzuntar -p {{8}} {{path/to/archive.tar.lrz}}` - -- Decompress from a file to the current directory and silently overwrite items that already exist: - -`lrzuntar -f {{archive.tar.lrz}}` - -- Specify the output path: - -`lrzuntar -O {{path/to/directory}} {{archive.tar.lrz}}` - -- Delete the compressed file after decompression: - -`lrzuntar -D {{path/to/archive.tar.lrz}}` +`tldr lrztar` diff --git a/pages/linux/lxc-create.md b/pages/linux/lxc-create.md index 5826e3b4a4..8eaed196a6 100644 --- a/pages/linux/lxc-create.md +++ b/pages/linux/lxc-create.md @@ -1,7 +1,7 @@ # lxc-create > Create linux containers. -> More information: . +> More information: . - Create a container interactively in `/var/lib/lxc/`: diff --git a/pages/linux/lxc-network.md b/pages/linux/lxc-network.md index 6e9686982d..89e52f0e54 100644 --- a/pages/linux/lxc-network.md +++ b/pages/linux/lxc-network.md @@ -1,7 +1,7 @@ # lxc network > Manage networks for LXD containers. -> More information: . +> More information: . - List all available networks: diff --git a/pages/linux/lxc-profile.md b/pages/linux/lxc-profile.md index 84ee0938c0..aff07ae472 100644 --- a/pages/linux/lxc-profile.md +++ b/pages/linux/lxc-profile.md @@ -1,7 +1,7 @@ # lxc profile > Manage profiles for LXD containers. -> More information: . +> More information: . - List all available profiles: @@ -21,7 +21,7 @@ - Launch a new container with specific profiles: -`lxc launch {{container_image}} {{container_name}} --profile {{profile1}} --profile {{profile2}}` +`lxc launch {{container_image}} {{container_name}} {{[-p|--profile]}} {{profile1}} {{[-p|--profile]}} {{profile2}}` - Change the profiles of a running container: diff --git a/pages/linux/manpath.md b/pages/linux/manpath.md index 5e608931f5..d4a33c27b8 100644 --- a/pages/linux/manpath.md +++ b/pages/linux/manpath.md @@ -9,4 +9,4 @@ - Show the entire global manpath: -`manpath --global` +`manpath {{[-g|--global]}}` diff --git a/pages/linux/microcom.md b/pages/linux/microcom.md index 9b2f306902..6260de690c 100644 --- a/pages/linux/microcom.md +++ b/pages/linux/microcom.md @@ -5,8 +5,8 @@ - Open a serial port using the specified baud rate: -`microcom --port {{path/to/serial_port}} --speed {{baud_rate}}` +`microcom {{[-p|--port]}} {{/dev/ttyXYZ}} {{[-s|--speed]}} {{baud_rate}}` - Establish a telnet connection to the specified host: -`microcom --telnet {{hostname}}:{{port}}` +`microcom {{[-t|--telnet]}} {{hostname}}:{{port}}` diff --git a/pages/linux/mssh.md b/pages/linux/mssh.md index 4164c43bd3..a0f063410f 100644 --- a/pages/linux/mssh.md +++ b/pages/linux/mssh.md @@ -5,8 +5,8 @@ - Open a new window and connect to multiple SSH servers: -`mssh {{user@host1}} {{user@host2}} {{...}}` +`mssh {{user@host1 user@host2 ...}}` - Open a new window and connect to a group of servers predefined in `~/.mssh_clusters`: -`mssh --alias {{alias_name}}` +`mssh {{[-a|--alias]}} {{alias_name}}` diff --git a/pages/linux/nitrogen.md b/pages/linux/nitrogen.md index f5f8b8662d..6869920ad5 100644 --- a/pages/linux/nitrogen.md +++ b/pages/linux/nitrogen.md @@ -1,7 +1,7 @@ # nitrogen > Desktop background browser and setter for X Window. -> More information: . +> More information: . - View and set the wallpapers from a specific directory: diff --git a/pages/linux/powerprofilesctl.md b/pages/linux/powerprofilesctl.md index dc44304b71..a3465d6825 100644 --- a/pages/linux/powerprofilesctl.md +++ b/pages/linux/powerprofilesctl.md @@ -1,7 +1,7 @@ # powerprofilesctl > Make power profiles handling available over D-Bus. -> More information: . +> More information: . - List available power profiles: diff --git a/pages/linux/pstree.md b/pages/linux/pstree.md index 375cc9b498..018b8fbb6d 100644 --- a/pages/linux/pstree.md +++ b/pages/linux/pstree.md @@ -9,7 +9,7 @@ - Display a tree of processes with PIDs: -`pstree -p` +`pstree {{[-p|--show-pids]}}` - Display all process trees rooted at processes owned by specified user: diff --git a/pages/linux/slapt-src.md b/pages/linux/slapt-src.md index 5a900bc8fc..1919626f24 100644 --- a/pages/linux/slapt-src.md +++ b/pages/linux/slapt-src.md @@ -6,20 +6,20 @@ - Update the list of available slackbuilds and versions: -`slapt-src --update` +`slapt-src {{[-u|--update]}}` - List all available slackbuilds: -`slapt-src --list` +`slapt-src {{[-l|--list]}}` - Fetch, build and install the specified slackbuild(s): -`slapt-src --install {{slackbuild_name}}` +`slapt-src {{[-i|--install]}} {{slackbuild_name}}` - Locate slackbuilds by their name or description: -`slapt-src --search {{search_term}}` +`slapt-src {{[-s|--search]}} {{search_term}}` - Display information about a slackbuild: -`slapt-src --show {{slackbuild_name}}` +`slapt-src {{[-w|--show]}} {{slackbuild_name}}` diff --git a/pages/linux/spi.md b/pages/linux/spi.md index 71901cb81c..df2a7f63fa 100644 --- a/pages/linux/spi.md +++ b/pages/linux/spi.md @@ -1,19 +1,19 @@ # spi > A meta package manager that handles both packages and slackbuilds. -> More information: . +> More information: . - Update the list of available packages and slackbuilds: -`spi --update` +`spi {{[-u|--update]}}` - Install a package or slackbuild: -`spi --install {{package/slackbuild_name}}` +`spi {{[-i|--install]}} {{package/slackbuild_name}}` - Upgrade all installed packages to the latest versions available: -`spi --upgrade` +`spi {{[-U|--upgrade]}}` - Locate packages or slackbuilds by package name or description: diff --git a/pages/linux/steghide.md b/pages/linux/steghide.md index 3bf5b38c0d..8af12a7e82 100644 --- a/pages/linux/steghide.md +++ b/pages/linux/steghide.md @@ -1,15 +1,15 @@ # steghide > Steganography tool for JPEG, BMP, WAV and AU file formats. -> More information: . +> More information: . - Embed data in a PNG, prompting for a passphrase: -`steghide embed --coverfile {{path/to/image.png}} --embedfile {{path/to/data.txt}}` +`steghide embed {{[-cf|--coverfile]}} {{path/to/image.png}} {{[-ef|--embedfile]}} {{path/to/data.txt}}` - Extract data from a WAV audio file: -`steghide extract --stegofile {{path/to/sound.wav}}` +`steghide extract {{[-sf|--stegofile]}} {{path/to/sound.wav}}` - Display file information, trying to detect an embedded file: @@ -17,7 +17,7 @@ - Embed data in a JPEG image, using maximum compression: -`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --compress {{9}}` +`steghide embed {{[-cf|--coverfile]}} {{path/to/image.jpg}} {{[-ef|--embedfile]}} {{path/to/data.txt}} {{[-z|--compress]}} {{9}}` - Get the list of supported encryption algorithms and modes: @@ -25,4 +25,4 @@ - Embed encrypted data in a JPEG image, e.g. with Blowfish in CBC mode: -`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --encryption {{blowfish|...}} {{cbc|...}}` +`steghide embed {{[-cf|--coverfile]}} {{path/to/image.jpg}} {{[-ef|--embedfile]}} {{path/to/data.txt}} {{[-e|--encryption]}} {{blowfish|...}} {{cbc|...}}` diff --git a/pages/linux/tomb.md b/pages/linux/tomb.md index dcdda26cd1..e9874cc599 100644 --- a/pages/linux/tomb.md +++ b/pages/linux/tomb.md @@ -1,7 +1,7 @@ # tomb > Manage encrypted storage directories that can be safely transported and hidden in a filesystem. -> More information: . +> More information: . - Create a new tomb with an initial size of 100 MB: diff --git a/pages/linux/wajig.md b/pages/linux/wajig.md index 3d2799302a..4dc6da375c 100644 --- a/pages/linux/wajig.md +++ b/pages/linux/wajig.md @@ -1,7 +1,7 @@ # wajig > Simplified all-in-one-place system support tool for Debian-based systems. -> More information: . +> More information: . - Update the list of available packages and versions: diff --git a/pages/linux/xcowsay.md b/pages/linux/xcowsay.md index 165f1ebc6d..a8d1132fe1 100644 --- a/pages/linux/xcowsay.md +++ b/pages/linux/xcowsay.md @@ -2,7 +2,7 @@ > Display a cute cow and message on your Linux desktop. > The cow is displayed for either a fixed amount of time, or an amount of time calculated from the size of the text. Click on the cow to dismiss it immediately. -> More information: . +> More information: . - Display a cow saying "hello, world": @@ -14,11 +14,11 @@ - Display a cow at the specified X and Y coordinates: -`xcowsay --at={{X}},{{Y}}` +`xcowsay --at {{X}},{{Y}}` - Display a different sized cow: -`xcowsay --cow-size={{small|med|large}}` +`xcowsay --cow-size {{small|med|large}}` - Display a thought bubble instead of a speech bubble: @@ -26,4 +26,4 @@ - Display a different image instead of the default cow: -`xcowsay --image={{path/to/file}}` +`xcowsay --image {{path/to/file}}` diff --git a/pages/linux/xwinwrap.md b/pages/linux/xwinwrap.md index 669db4e743..eef3bfafb6 100644 --- a/pages/linux/xwinwrap.md +++ b/pages/linux/xwinwrap.md @@ -5,16 +5,16 @@ - Run a video using mpv: -`xwinwrap -b -nf -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` +`xwinwrap -b -nf -ov -- {{mpv}} --wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` - Run a video in fullscreen using mpv: -`xwinwrap -b -nf -fs -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` +`xwinwrap -b -nf -fs -ov -- {{mpv}} --wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` - Run a video using mpv with 80% opacity: -`xwinwrap -b -nf -ov -o 0.8 --- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` +`xwinwrap -b -nf -ov -o 0.8 --- {{mpv}} --wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` - Run a video using mpv in a second monitor 1600x900 with 1920 offset on X-axis: -`xwinwrap -g 1600x900+1920 -b -nf -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mkv}}` +`xwinwrap -g 1600x900+1920 -b -nf -ov -- {{mpv}} --wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mkv}}`