From 52b9debcc5976f2195012b02db2acb8c8ce2d24d Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Wed, 25 Sep 2024 00:17:11 +0000 Subject: [PATCH] Update cheatsheets --- tldr/aapt | 2 +- tldr/asciinema | 2 +- tldr/base32 | 10 +++++----- tldr/base64 | 16 ++++++++-------- tldr/calendar | 2 +- tldr/calibre-server | 1 + tldr/calibredb | 6 +++--- tldr/docker-images | 2 +- tldr/docker-inspect | 2 +- tldr/docker-load | 2 +- tldr/gitstats | 17 +++++++++++++++++ tldr/linux/apk | 2 +- tldr/linux/arch-chroot | 2 +- tldr/linux/at | 2 +- tldr/linux/checkupdates | 2 +- tldr/linux/genfstab | 2 +- tldr/linux/lddd | 2 +- tldr/linux/makepkg | 2 +- tldr/linux/mkfs.bcachefs | 17 +++++++++++++++++ tldr/linux/mkinitcpio | 2 +- tldr/linux/namcap | 2 +- tldr/linux/pacdiff | 2 +- tldr/linux/pacman | 2 +- tldr/linux/pacman-database | 2 +- tldr/linux/pacman-deptest | 2 +- tldr/linux/pacman-files | 2 +- tldr/linux/pacman-key | 2 +- tldr/linux/pacman-query | 2 +- tldr/linux/pacman-remove | 2 +- tldr/linux/pacman-sync | 2 +- tldr/linux/pacman-upgrade | 2 +- tldr/linux/pacstrap | 2 +- tldr/linux/pactree | 2 +- tldr/linux/picom | 2 +- tldr/linux/pkgctl | 2 +- tldr/linux/pkgctl-auth | 2 +- tldr/linux/pkgctl-build | 2 +- tldr/linux/pkgctl-db-update | 2 +- tldr/linux/pkgctl-diff | 2 +- tldr/linux/pkgctl-release | 2 +- tldr/linux/pkgctl-repo | 2 +- tldr/linux/pkgfile | 2 +- tldr/linux/rankmirrors | 2 +- tldr/linux/repo-add | 2 +- tldr/linux/repo-remove | 2 +- tldr/linux/rkhunter | 2 +- tldr/linux/xbps-install | 2 +- tldr/linux/xbps-query | 2 +- tldr/linux/xbps-remove | 2 +- 49 files changed, 94 insertions(+), 59 deletions(-) create mode 100644 tldr/gitstats create mode 100644 tldr/linux/mkfs.bcachefs diff --git a/tldr/aapt b/tldr/aapt index e5a1ad79..7e0e0da6 100644 --- a/tldr/aapt +++ b/tldr/aapt @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # aapt > Android Asset Packaging Tool: compile and package an Android app's resources. -> More information: . +> More information: . - List files contained in an APK archive: diff --git a/tldr/asciinema b/tldr/asciinema index b1dc5933..650b500a 100644 --- a/tldr/asciinema +++ b/tldr/asciinema @@ -31,7 +31,7 @@ source: https://github.com/tldr-pages/tldr.git - Make a new recording, limiting any [i]dle time to at most 2.5 seconds: -`asciinema rec -i 2.5` +`asciinema rec {{-i|--idle-time-limit}} 2.5` - Print the full output of a locally saved recording: diff --git a/tldr/base32 b/tldr/base32 index e11c8c84..01cc1cbf 100644 --- a/tldr/base32 +++ b/tldr/base32 @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # base32 > Encode or decode file or `stdin` to/from Base32, to `stdout`. -> More information: . +> More information: . - Encode a file: @@ -14,16 +14,16 @@ source: https://github.com/tldr-pages/tldr.git - Wrap encoded output at a specific width (`0` disables wrapping): -`base32 --wrap {{0|76|...}} {{path/to/file}}` +`base32 {{-w|--wrap}} {{0|76|...}} {{path/to/file}}` - Decode a file: -`base32 --decode {{path/to/file}}` +`base32 {{-d|--decode}} {{path/to/file}}` - Encode from `stdin`: -`{{somecommand}} | base32` +`{{command}} | base32` - Decode from `stdin`: -`{{somecommand}} | base32 --decode` +`{{command}} | base32 {{-d|--decode}}` diff --git a/tldr/base64 b/tldr/base64 index 6d26b0a0..05ba5f15 100644 --- a/tldr/base64 +++ b/tldr/base64 @@ -5,25 +5,25 @@ source: https://github.com/tldr-pages/tldr.git --- # base64 -> Encode or decode file or `stdin` to/from Base64, to `stdout`. -> More information: . +> Encode or decode file or `stdin` to/from base64, to `stdout`. +> More information: . -- Encode the contents of a file as base64 and write the result to `stdout`: +- Encode a file: `base64 {{path/to/file}}` - Wrap encoded output at a specific width (`0` disables wrapping): -`base64 --wrap {{0|76|...}} {{path/to/file}}` +`base64 {{-w|--wrap}} {{0|76|...}} {{path/to/file}}` -- Decode the base64 contents of a file and write the result to `stdout`: +- Decode a file: -`base64 --decode {{path/to/file}}` +`base64 {{-d|--decode}} {{path/to/file}}` - Encode from `stdin`: -`{{somecommand}} | base64` +`{{command}} | base64` - Decode from `stdin`: -`{{somecommand}} | base64 --decode` +`{{command}} | base64 {{-d|--decode}}` diff --git a/tldr/calendar b/tldr/calendar index dc8f92e3..c8cc0110 100644 --- a/tldr/calendar +++ b/tldr/calendar @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # calendar > Display upcoming events from a calendar file. -> More information: . +> More information: . - Show events for today and tomorrow (or the weekend on Friday) from the default calendar: diff --git a/tldr/calibre-server b/tldr/calibre-server index f2ebcabf..361009c2 100644 --- a/tldr/calibre-server +++ b/tldr/calibre-server @@ -7,6 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > A server application to distribute e-books over a network. > Note: e-books must already be imported into the library using the GUI or the `calibredb` CLI. +> Part of the Calibre e-book library. > More information: . - Start a server to distribute e-books. Access at : diff --git a/tldr/calibredb b/tldr/calibredb index d788d4f5..ae457db6 100644 --- a/tldr/calibredb +++ b/tldr/calibredb @@ -23,12 +23,12 @@ source: https://github.com/tldr-pages/tldr.git - Add one or more e-books to the library: -`calibredb add {{file1 file2 …}}` +`calibredb add {{path/to/file1 path/to/file2 ...}}` - [r]ecursively add all e-books under a directory to the library: -`calibredb add -r {{path/to/directory}}` +`calibredb add {{-r|--recurse}} {{path/to/directory}}` - Remove one or more e-books from the library. You need the e-book IDs (see above): -`calibredb remove {{id1 id2 …}}` +`calibredb remove {{id1 id2 ...}}` diff --git a/tldr/docker-images b/tldr/docker-images index 44142c44..e45e2b18 100644 --- a/tldr/docker-images +++ b/tldr/docker-images @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # docker images > Manage Docker images. -> More information: . +> More information: . - List all Docker images: diff --git a/tldr/docker-inspect b/tldr/docker-inspect index d2ee9478..a464fad7 100644 --- a/tldr/docker-inspect +++ b/tldr/docker-inspect @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # docker inspect > Return low-level information on Docker objects. -> More information: . +> More information: . - Display help: diff --git a/tldr/docker-load b/tldr/docker-load index 0f6871ba..950319ff 100644 --- a/tldr/docker-load +++ b/tldr/docker-load @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # docker load > Load Docker images from files or `stdin`. -> More information: . +> More information: . - Load a Docker image from `stdin`: diff --git a/tldr/gitstats b/tldr/gitstats new file mode 100644 index 00000000..af265825 --- /dev/null +++ b/tldr/gitstats @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# gitstats + +> Git repository statistics generator. +> More information: . + +- Generate statistics for a local repository: + +`gitstats {{path/to/gitrepo/.git}} {{path/to/output_folder}}` + +- View generated statistics in a web browser: + +`xdg-open {{path/to/output_folder/index.html}}` diff --git a/tldr/linux/apk b/tldr/linux/apk index 21ca218c..0eac4756 100644 --- a/tldr/linux/apk +++ b/tldr/linux/apk @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # apk > Alpine Linux package management tool. -> More information: . +> More information: . - Update repository indexes from all remote repositories: diff --git a/tldr/linux/arch-chroot b/tldr/linux/arch-chroot index 62f28602..21dd7501 100644 --- a/tldr/linux/arch-chroot +++ b/tldr/linux/arch-chroot @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # arch-chroot > Enhanced `chroot` command to help in the Arch Linux installation process. -> More information: . +> More information: . - Start an interactive shell (Bash, by default) in a new root directory: diff --git a/tldr/linux/at b/tldr/linux/at index 84a727e2..fb17a39d 100644 --- a/tldr/linux/at +++ b/tldr/linux/at @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # at > Executes commands at a specified time. -> More information: . +> More information: . - Open an `at` prompt to create a new set of scheduled commands, press `Ctrl + D` to save and exit: diff --git a/tldr/linux/checkupdates b/tldr/linux/checkupdates index 535b9aa9..b8370917 100644 --- a/tldr/linux/checkupdates +++ b/tldr/linux/checkupdates @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # checkupdates > Check pending updates in Arch Linux. -> More information: . +> More information: . - List pending updates: diff --git a/tldr/linux/genfstab b/tldr/linux/genfstab index 03c16fed..0974b30f 100644 --- a/tldr/linux/genfstab +++ b/tldr/linux/genfstab @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # genfstab > Arch Linux install script to generate output suitable for addition to an fstab file. -> More information: . +> More information: . - Display an fstab compatible output based on a volume label: diff --git a/tldr/linux/lddd b/tldr/linux/lddd index e265fdcd..eac35dd3 100644 --- a/tldr/linux/lddd +++ b/tldr/linux/lddd @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Find broken library links on the system. > This tool is only available on Arch Linux. -> More information: . +> More information: . - Scan directories to find and list packages with broken library links that need to be rebuilt: diff --git a/tldr/linux/makepkg b/tldr/linux/makepkg index e337a211..dddbe1bb 100644 --- a/tldr/linux/makepkg +++ b/tldr/linux/makepkg @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Create a package which can be used with `pacman`. > Uses the `PKGBUILD` file in the current working directory by default. -> More information: . +> More information: . - Make a package: diff --git a/tldr/linux/mkfs.bcachefs b/tldr/linux/mkfs.bcachefs new file mode 100644 index 00000000..4dd91e56 --- /dev/null +++ b/tldr/linux/mkfs.bcachefs @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# mkfs.bcachefs + +> Create a `bcachefs` filesystem inside a partition. +> More information: . + +- Create a `bcachefs` filesystem inside partition 1 on a device (`X`): + +`sudo mkfs.bcachefs {{/dev/sdX1}}` + +- Create a `bcachefs` filesystem with a volume label: + +`sudo mkfs.bcachefs {{-L|--fs_label}} {{volume_label}} {{/dev/sdX1}}` diff --git a/tldr/linux/mkinitcpio b/tldr/linux/mkinitcpio index 7b0c2856..ac70ad56 100644 --- a/tldr/linux/mkinitcpio +++ b/tldr/linux/mkinitcpio @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # mkinitcpio > Generates initial ramdisk environments for booting the Linux kernel based on the specified preset(s). -> More information: . +> More information: . - Perform a dry run (print what would be done without actually doing it): diff --git a/tldr/linux/namcap b/tldr/linux/namcap index d26b51d7..ef5b3962 100644 --- a/tldr/linux/namcap +++ b/tldr/linux/namcap @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # namcap > Check binary packages and source `PKGBUILD`s for common packaging mistakes. -> More information: . +> More information: . - Check a specific `PKGBUILD` file: diff --git a/tldr/linux/pacdiff b/tldr/linux/pacdiff index d784da24..76edf31d 100644 --- a/tldr/linux/pacdiff +++ b/tldr/linux/pacdiff @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pacdiff > Maintenance utility for `.pacorig`, `.pacnew` and `.pacsave` files created by `pacman`. -> More information: . +> More information: . - Review files that need maintenance in interactive mode: diff --git a/tldr/linux/pacman b/tldr/linux/pacman index c3e31963..5e04fa30 100644 --- a/tldr/linux/pacman +++ b/tldr/linux/pacman @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Arch Linux package manager utility. > See also: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`. > For equivalent commands in other package managers, see . -> More information: . +> More information: . - Synchronize and update all packages: diff --git a/tldr/linux/pacman-database b/tldr/linux/pacman-database index 35fbc3b3..46ec683d 100644 --- a/tldr/linux/pacman-database +++ b/tldr/linux/pacman-database @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Operate on the Arch Linux package database. > Modify certain attributes of the installed packages. > See also: `pacman`. -> More information: . +> More information: . - Mark a package as implicitly installed: diff --git a/tldr/linux/pacman-deptest b/tldr/linux/pacman-deptest index 10f59fd1..568d452d 100644 --- a/tldr/linux/pacman-deptest +++ b/tldr/linux/pacman-deptest @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Check each dependency specified and return a list of dependencies that are not currently satisfied on the system. > See also: `pacman`. -> More information: . +> More information: . - Print the package names of the dependencies that aren't installed: diff --git a/tldr/linux/pacman-files b/tldr/linux/pacman-files index 9c803fa6..a9de725c 100644 --- a/tldr/linux/pacman-files +++ b/tldr/linux/pacman-files @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Arch Linux package manager utility. > See also: `pacman`, `pkgfile`. -> More information: . +> More information: . - Update the package database: diff --git a/tldr/linux/pacman-key b/tldr/linux/pacman-key index 7769026a..f5819354 100644 --- a/tldr/linux/pacman-key +++ b/tldr/linux/pacman-key @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Wrapper script for GnuPG used to manage pacman's keyring. > See also: `pacman`. -> More information: . +> More information: . - Initialize the `pacman` keyring: diff --git a/tldr/linux/pacman-query b/tldr/linux/pacman-query index 8066cac5..af9f5f11 100644 --- a/tldr/linux/pacman-query +++ b/tldr/linux/pacman-query @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Arch Linux package manager utility. > See also: `pacman`. -> More information: . +> More information: . - List installed packages and versions: diff --git a/tldr/linux/pacman-remove b/tldr/linux/pacman-remove index 466b59dd..2f635af7 100644 --- a/tldr/linux/pacman-remove +++ b/tldr/linux/pacman-remove @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Arch Linux package manager utility. > See also: `pacman`. -> More information: . +> More information: . - Remove a package and its dependencies: diff --git a/tldr/linux/pacman-sync b/tldr/linux/pacman-sync index a8dc2897..481bbef6 100644 --- a/tldr/linux/pacman-sync +++ b/tldr/linux/pacman-sync @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Arch Linux package manager utility. > See also: `pacman`. -> More information: . +> More information: . - Install a new package: diff --git a/tldr/linux/pacman-upgrade b/tldr/linux/pacman-upgrade index 4fdc2fd5..7f38ed82 100644 --- a/tldr/linux/pacman-upgrade +++ b/tldr/linux/pacman-upgrade @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Arch Linux package manager utility. > See also: `pacman`. -> More information: . +> More information: . - Install one or more packages from files: diff --git a/tldr/linux/pacstrap b/tldr/linux/pacstrap index dd8ec154..cbf1f72e 100644 --- a/tldr/linux/pacstrap +++ b/tldr/linux/pacstrap @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pacstrap > Arch Linux install script to install packages to the specified new root directory. -> More information: . +> More information: . - Install the `base` package, Linux kernel and firmware for common hardware: diff --git a/tldr/linux/pactree b/tldr/linux/pactree index 17830a8e..88258650 100644 --- a/tldr/linux/pactree +++ b/tldr/linux/pactree @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pactree > Package dependency tree viewer for pacman. -> More information: . +> More information: . - Print the dependency tree of a specific package: diff --git a/tldr/linux/picom b/tldr/linux/picom index c24ef58e..1f4ab8e0 100644 --- a/tldr/linux/picom +++ b/tldr/linux/picom @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # picom > Standalone compositor for Xorg. -> More information: . +> More information: . - Enable `picom` during a session: diff --git a/tldr/linux/pkgctl b/tldr/linux/pkgctl index e1424802..15e4ade7 100644 --- a/tldr/linux/pkgctl +++ b/tldr/linux/pkgctl @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pkgctl > Unified command-line frontend for Arch Linux devtools. -> More information: . +> More information: . - View documentation for authenticating `pkgctl` with services like GitLab: diff --git a/tldr/linux/pkgctl-auth b/tldr/linux/pkgctl-auth index 6162cd42..98c35334 100644 --- a/tldr/linux/pkgctl-auth +++ b/tldr/linux/pkgctl-auth @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pkgctl auth > Authenticate `pkgctl` with services like GitLab. -> More information: . +> More information: . - Authenticate `pkgctl` with the GitLab instance: diff --git a/tldr/linux/pkgctl-build b/tldr/linux/pkgctl-build index 35123c8a..e44c436d 100644 --- a/tldr/linux/pkgctl-build +++ b/tldr/linux/pkgctl-build @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pkgctl build > Build packages inside a clean `chroot`. -> More information: . +> More information: . - Automatically choose the right build script to build packages in a clean `chroot`: diff --git a/tldr/linux/pkgctl-db-update b/tldr/linux/pkgctl-db-update index 216e7b7a..daf47245 100644 --- a/tldr/linux/pkgctl-db-update +++ b/tldr/linux/pkgctl-db-update @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pkgctl db update > Update the `pacman` database as final release step for packages that have been transferred and staged on . -> More information: . +> More information: . - Update the binary repository as final release step: diff --git a/tldr/linux/pkgctl-diff b/tldr/linux/pkgctl-diff index 7b4fbf76..fab5ce6d 100644 --- a/tldr/linux/pkgctl-diff +++ b/tldr/linux/pkgctl-diff @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Compare package files using different modes. > See also: `pkgctl`. -> More information: . +> More information: . - Compare package files in tar content [l]ist different mode (default): diff --git a/tldr/linux/pkgctl-release b/tldr/linux/pkgctl-release index 0d5ee604..1c4719f9 100644 --- a/tldr/linux/pkgctl-release +++ b/tldr/linux/pkgctl-release @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pkgctl release > Release step to commit, tag and upload build artifacts. -> More information: . +> More information: . - Release a build artifact: diff --git a/tldr/linux/pkgctl-repo b/tldr/linux/pkgctl-repo index d35868b8..2768c62a 100644 --- a/tldr/linux/pkgctl-repo +++ b/tldr/linux/pkgctl-repo @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Manage Git packaging repositories and their configuration for Arch Linux. > See also: `pkgctl`. -> More information: . +> More information: . - Clone a package repository (requires setting an SSH key in your Arch Linux GitLab account): diff --git a/tldr/linux/pkgfile b/tldr/linux/pkgfile index ac4bc00e..83ef781f 100644 --- a/tldr/linux/pkgfile +++ b/tldr/linux/pkgfile @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Search files from packages in the official repositories on Arch-based systems. > See also: `pacman files`, describing the usage of `pacman --files`. -> More information: . +> More information: . - Synchronize the pkgfile database: diff --git a/tldr/linux/rankmirrors b/tldr/linux/rankmirrors index 7afee051..f6edccbf 100644 --- a/tldr/linux/rankmirrors +++ b/tldr/linux/rankmirrors @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Rank a list of Pacman mirrors by connection and opening speed. > Writes the new mirrorlist to `stdout`. -> More information: . +> More information: . - Rank a mirror list: diff --git a/tldr/linux/repo-add b/tldr/linux/repo-add index fb50347b..bbfa29b1 100644 --- a/tldr/linux/repo-add +++ b/tldr/linux/repo-add @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # repo-add > Package database maintenance utility which enables installation of said package via Pacman. -> More information: . +> More information: . - Create an empty repository: diff --git a/tldr/linux/repo-remove b/tldr/linux/repo-remove index 008e9277..de21c02b 100644 --- a/tldr/linux/repo-remove +++ b/tldr/linux/repo-remove @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # repo-remove > Package database maintenance utility which removes packages from a local repository. -> More information: . +> More information: . - Remove a package from a local repository: diff --git a/tldr/linux/rkhunter b/tldr/linux/rkhunter index 1c9f9087..ed1312c3 100644 --- a/tldr/linux/rkhunter +++ b/tldr/linux/rkhunter @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # rkhunter > Searches for rootkits and malware. -> More information: . +> More information: . - Check a system for rootkits and malware: diff --git a/tldr/linux/xbps-install b/tldr/linux/xbps-install index 8729cdeb..dcc6c1d1 100644 --- a/tldr/linux/xbps-install +++ b/tldr/linux/xbps-install @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > XBPS utility to (re)install and update packages. > See also: `xbps`. -> More information: . +> More information: . - Install a new package: diff --git a/tldr/linux/xbps-query b/tldr/linux/xbps-query index d9050b3c..fae19291 100644 --- a/tldr/linux/xbps-query +++ b/tldr/linux/xbps-query @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > XBPS utility to query for package and repository information. > See also: `xbps`. -> More information: . +> More information: . - Search for a package in remote repositories using a regular expression or a keyword (if `--regex` is omitted): diff --git a/tldr/linux/xbps-remove b/tldr/linux/xbps-remove index ac8f8290..ed9f40bf 100644 --- a/tldr/linux/xbps-remove +++ b/tldr/linux/xbps-remove @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > XBPS utility to remove packages. > See also: `xbps`. -> More information: . +> More information: . - Remove a package: