mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-05 03:15:33 +02:00
pages.*: improve pages descriptions conciseness and usefulness (#12355)
This commit is contained in:
parent
1ede1be877
commit
a609b14c83
31 changed files with 35 additions and 35 deletions
|
@ -1,6 +1,6 @@
|
|||
# aws-google-auth
|
||||
|
||||
> Command-line tool to acquire AWS temporary (STS) credentials using Google Apps as a federated (Single Sign-On) provider.
|
||||
> Acquire AWS temporary (STS) credentials using Google Apps as a federated (Single Sign-On) provider.
|
||||
> More information: <https://github.com/cevoaustralia/aws-google-auth>.
|
||||
|
||||
- Log in with Google SSO using the specified [u]sername [I]DP and [S]P identifiers and set the credentials [d]uration to one hour:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# blackfire
|
||||
|
||||
> A command-line profiling tool for PHP.
|
||||
> Monitor, profile and test a PHP application.
|
||||
> More information: <https://blackfire.io>.
|
||||
|
||||
- Initialize and configure the Blackfire client:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# convert
|
||||
|
||||
> Image conversion tool.
|
||||
> Convert between image formats, scale, join, and create images, and much more.
|
||||
> Part of ImageMagick.
|
||||
> More information: <https://imagemagick.org/script/convert.php>.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# git secret
|
||||
|
||||
> Bash tool which stores private data inside a Git repository.
|
||||
> Stores private data inside a Git repository. Written in Bash.
|
||||
> More information: <https://github.com/sobolevn/git-secret>.
|
||||
|
||||
- Initialize `git-secret` in a local repository:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# gyb
|
||||
|
||||
> Command line tool for locally backing up Gmail messages using Gmail's API over HTTPS.
|
||||
> Locally back up Gmail messages using Gmail's API over HTTPS.
|
||||
> More information: <https://github.com/GAM-team/got-your-back>.
|
||||
|
||||
- Estimate the number and the size of all emails on your Gmail account:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jenv
|
||||
|
||||
> Command-line tool to manage the "JAVA_HOME" environment variable.
|
||||
> Manage the "JAVA_HOME" environment variable.
|
||||
> More information: <https://www.jenv.be/>.
|
||||
|
||||
- Add a Java version to jEnv:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# json5
|
||||
|
||||
> A command-line tool for converting JSON5 files to JSON.
|
||||
> Convert JSON5 files to JSON.
|
||||
> More information: <https://json5.org>.
|
||||
|
||||
- Convert JSON5 `stdin` to JSON `stdout`:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# k8s-unused-secret-detector
|
||||
|
||||
> Command-line interface tool for detecting unused Kubernetes secrets.
|
||||
> Detect unused Kubernetes secrets.
|
||||
> More information: <https://github.com/dtan4/k8s-unused-secret-detector>.
|
||||
|
||||
- Detect unused secrets:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# k8sec
|
||||
|
||||
> Command-line interface tool to manage Kubernetes secrets.
|
||||
> Manage Kubernetes secrets.
|
||||
> More information: <https://github.com/dtan4/k8sec>.
|
||||
|
||||
- List all secrets:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# lpr
|
||||
|
||||
> CUPS tool for printing files.
|
||||
> Print files.
|
||||
> See also: `lpstat` and `lpadmin`.
|
||||
> More information: <https://openprinting.github.io/cups/doc/man-lpr.html>.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# minifab
|
||||
|
||||
> Utility tool that automates the setup and deployment of Hyperledger Fabric networks.
|
||||
> Automate the setup and deployment of Hyperledger Fabric networks.
|
||||
> More information: <https://github.com/hyperledger-labs/minifabric>.
|
||||
|
||||
- Bring up the default Hyperledger Fabric network:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# nativefier
|
||||
|
||||
> Command-line tool to create a desktop app for any web site with minimal configuration.
|
||||
> Create a desktop app for any web site with minimal configuration.
|
||||
> More information: <https://github.com/jiahaog/nativefier>.
|
||||
|
||||
- Make a desktop app for a website:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# nest
|
||||
|
||||
> Command-line tool to initialize, develop, and maintain Nest applications.
|
||||
> Initialize, develop, and maintain Nest applications.
|
||||
> More information: <https://docs.nestjs.com/cli/overview>.
|
||||
|
||||
- Display information about installed nest version:
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
# tokei
|
||||
|
||||
> A program that prints out statistics about code.
|
||||
> Display statistics about code.
|
||||
> More information: <https://github.com/XAMPPRocky/tokei>.
|
||||
|
||||
- Get a report on the code in a directory and all subdirectories:
|
||||
- Display a report for the code in a directory and all subdirectories:
|
||||
|
||||
`tokei {{path/to/directory}}`
|
||||
|
||||
- Get a report for a directory excluding `.min.js` files:
|
||||
- Display a report for a directory excluding `.min.js` files:
|
||||
|
||||
`tokei {{path/to/directory}} -e {{*.min.js}}`
|
||||
|
||||
- Print out statistics for individual files in a directory:
|
||||
- Display statistics for individual files in a directory:
|
||||
|
||||
`tokei {{path/to/directory}} --files`
|
||||
|
||||
- Get a report for all files of type Rust and Markdown:
|
||||
- Display a report for all files of type Rust and Markdown:
|
||||
|
||||
`tokei {{path/to/directory}} -t={{Rust}},{{Markdown}}`
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# zip2john
|
||||
|
||||
> A tool to extract password hashes from `zip` archives for use with John the Ripper password cracker.
|
||||
> Extract password hashes from `zip` archives for use with John the Ripper password cracker.
|
||||
> This is a utility tool usually installed as part of the John the Ripper installation.
|
||||
> More information: <https://www.openwall.com/john/>.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# ausyscall
|
||||
|
||||
> Program that allows mapping syscall names and numbers.
|
||||
> Map syscall names and numbers.
|
||||
> More information: <https://manned.org/ausyscall>.
|
||||
|
||||
- Display syscall number of a specific system call:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# betterdiscordctl
|
||||
|
||||
> A program for managing BetterDiscord on Linux.
|
||||
> Manage BetterDiscord on Linux.
|
||||
> More information: <https://github.com/bb010g/betterdiscordctl#manual>.
|
||||
|
||||
- Install BetterDiscord on Discord Stable:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# btrbk
|
||||
|
||||
> A tool for creating snapshots and remote backups of btrfs subvolumes.
|
||||
> Create snapshots and remote backups of btrfs subvolumes.
|
||||
> More information: <https://digint.ch/btrbk/doc/readme.html>.
|
||||
|
||||
- Print statistics about configured subvolumes and snapshots:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# cfdisk
|
||||
|
||||
> A program for managing partition tables and partitions on a hard disk using a curses UI.
|
||||
> Manage partition tables and partitions on a hard disk using a curses UI.
|
||||
> More information: <https://manned.org/cfdisk>.
|
||||
|
||||
- Start the partition manipulator with a specific device:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# cpufreq-info
|
||||
|
||||
> A tool to show CPU frequency information.
|
||||
> Show CPU frequency information.
|
||||
> More information: <https://manned.org/cpufreq-info>.
|
||||
|
||||
- Show CPU frequency information for all CPUs:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# dpkg-query
|
||||
|
||||
> A tool that shows information about installed packages.
|
||||
> Display information about installed packages.
|
||||
> More information: <https://manpages.debian.org/latest/dpkg/dpkg-query.1.html>.
|
||||
|
||||
- List all installed packages:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# fdisk
|
||||
|
||||
> A program for managing partition tables and partitions on a hard disk.
|
||||
> Manage partition tables and partitions on a hard disk.
|
||||
> See also: `partprobe`.
|
||||
> More information: <https://manned.org/fdisk>.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# fwupdmgr
|
||||
|
||||
> A tool for updating device firmware, including UEFI, using `fwupd`.
|
||||
> Update device firmware, including UEFI, using `fwupd`.
|
||||
> More information: <https://fwupd.org/>.
|
||||
|
||||
- Display all devices detected by fwupd:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# gdebi
|
||||
|
||||
> Simple tool to install `.deb` files.
|
||||
> Easily install `.deb` files.
|
||||
> More information: <https://www.commandlinux.com/man-page/man1/gdebi.1.html>.
|
||||
|
||||
- Install local `.deb` packages resolving and installing its dependencies:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# ipset
|
||||
|
||||
> A tool to create IP sets for firewall rules.
|
||||
> Create IP sets for firewall rules.
|
||||
> More information: <https://manned.org/ipset>.
|
||||
|
||||
- Create an empty IP set which will contain IP addresses:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# minicom
|
||||
|
||||
> A program to communicate with the serial interface of a device.
|
||||
> Communicate with the serial interface of a device.
|
||||
> More information: <https://manned.org/minicom>.
|
||||
|
||||
- Open a given serial port:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# update-alternatives
|
||||
|
||||
> A convenient tool for maintaining symbolic links to determine default commands.
|
||||
> Convenientily maintain symbolic links to determine default commands.
|
||||
> More information: <https://manned.org/update-alternatives>.
|
||||
|
||||
- Add a symbolic link:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# archey
|
||||
|
||||
> Simple tool for stylishly displaying system information.
|
||||
> Stylishly display system information.
|
||||
> More information: <https://github.com/joshfinnie/archey-osx>.
|
||||
|
||||
- Show system information:
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
|
||||
`shuf {{filename}} --output={{output_filename}}`
|
||||
|
||||
- Generate random numbers in range 1-10:
|
||||
- Generate random numbers in the range 1 to 10:
|
||||
|
||||
`shuf --input-range={{1-10}}`
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# wacaw
|
||||
|
||||
> Command-line tool for macOS to capture both still pictures and video from an attached camera.
|
||||
> Capture both still pictures and video from an attached camera.
|
||||
> More information: <http://webcam-tools.sourceforge.net>.
|
||||
|
||||
- Take a picture from webcam:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# gpupdate
|
||||
|
||||
> A tool to check and apply Windows Group Policy settings.
|
||||
> Check and apply Windows Group Policy settings.
|
||||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/gpupdate>.
|
||||
|
||||
- Check and apply updated Group Policy settings:
|
||||
|
|
Loading…
Add table
Reference in a new issue