mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
*: improve more info links and add option placeholders part 1 (#19556)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
> Shell script implementing ACME client protocol, an alternative to `certbot`.
|
||||
> See also: `acme.sh dns`.
|
||||
> More information: <https://github.com/acmesh-official/acme.sh>.
|
||||
> More information: <https://github.com/acmesh-official/acme.sh#2-just-issue-a-cert>.
|
||||
|
||||
- Issue a certificate using webroot mode:
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
> A collection of tools for indexing, inspecting, and visualizing disk usage.
|
||||
> Duc maintains a database of accumulated sizes of directories of the file system, allowing queries in this database, or creating fancy graphs to show where data is.
|
||||
> More information: <https://duc.zevv.nl/>.
|
||||
> More information: <https://htmlpreview.github.io/?https://github.com/zevv/duc/blob/master/doc/duc.1.html>.
|
||||
|
||||
- Index the `/usr` directory, writing to the default database location `~/.duc.db`:
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# duckdb
|
||||
|
||||
> Client for DuckDB, an in-process analytical SQL engine.
|
||||
> More information: <https://duckdb.org>.
|
||||
> More information: <https://duckdb.org/docs/stable/clients/cli/arguments>.
|
||||
|
||||
- Start an interactive shell with a transient in-memory database:
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
> Renders an animated tree diagram of Git, SVN, Mercurial and Bazaar repositories.
|
||||
> It shows files and directories being created, modified or removed over time.
|
||||
> More information: <https://gource.io>.
|
||||
> More information: <https://manned.org/gource>.
|
||||
|
||||
- Run gource in a directory (if it isn't the repository's root directory, the root is sought up from there):
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
> An SVG (Scalable Vector Graphics) editing program.
|
||||
> For Inkscape versions up to 0.92.x, use -e instead of -o.
|
||||
> More information: <https://inkscape.org>.
|
||||
> More information: <https://inkscape.org/doc/inkscape-man.html>.
|
||||
|
||||
- Open an SVG file in the Inkscape GUI:
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
> Typeset music and/or produce MIDI from file.
|
||||
> See also: `musescore`.
|
||||
> More information: <https://lilypond.org>.
|
||||
> More information: <https://lilypond.org/doc/v2.24/Documentation/usage/command_002dline-usage>.
|
||||
|
||||
- Compile a lilypond file into a PDF:
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
> Free, open source, cross-platform digital audio workstation.
|
||||
> Render a `.mmp` or `.mmpz` project file, dump a `.mmpz` as XML, or start the GUI.
|
||||
> See also: `mixxx`.
|
||||
> More information: <https://lmms.io>.
|
||||
> More information: <https://manned.org/lmms>.
|
||||
|
||||
- Start the GUI:
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
- Start the GUI and load external config:
|
||||
|
||||
`lmms --config {{path/to/config.xml}}`
|
||||
`lmms {{[-c|--config]}} {{path/to/config.xml}}`
|
||||
|
||||
- Start the GUI and import MIDI or Hydrogen file:
|
||||
|
||||
@@ -35,4 +35,4 @@
|
||||
|
||||
- Render with custom samplerate, format, and as a loop:
|
||||
|
||||
`lmms render --samplerate {{88200}} --format {{ogg}} --loop --output {{path/to/output_file.ogg}}`
|
||||
`lmms render {{[-s|--samplerate]}} {{88200}} {{[-f|--format]}} {{ogg}} {{[-l|--loop]}} {{[-o|--output]}} {{path/to/output_file.ogg}}`
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
> Create, edit, compose, or convert between image formats.
|
||||
> This tool replaces `convert` in ImageMagick 7+. See `magick convert` to use the old tool in versions 7+.
|
||||
> Some subcommands, such as `mogrify` have their own usage documentation.
|
||||
> More information: <https://imagemagick.org>.
|
||||
> More information: <https://imagemagick.org/script/magick.php>.
|
||||
|
||||
- Convert between image formats:
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
# mlr
|
||||
|
||||
> Miller is like `awk`, `sed`, `cut`, `join`, and `sort` for name-indexed data such as CSV, TSV, and tabular JSON.
|
||||
> More information: <https://miller.readthedocs.io>.
|
||||
> More information: <https://miller.readthedocs.io/en/latest/manpage/>.
|
||||
|
||||
- Pretty-print a CSV file in a tabular format:
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# mocha
|
||||
|
||||
> A feature-rich JavaScript test framework.
|
||||
> More information: <https://mochajs.org>.
|
||||
> More information: <https://mochajs.org/#command-line-usage>.
|
||||
|
||||
- Run tests with default configuration or as configured in `mocha.opts`:
|
||||
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
- Run tests that match a specific `grep` pattern:
|
||||
|
||||
`mocha --grep {{regex}}`
|
||||
`mocha {{[-g|--grep]}} {{regex}}`
|
||||
|
||||
- Run tests on changes to JavaScript files in the current directory and once initially:
|
||||
|
||||
`mocha --watch`
|
||||
`mocha {{[-w|--watch]}}`
|
||||
|
||||
- Run tests with a specific reporter:
|
||||
|
||||
`mocha --reporter {{reporter}}`
|
||||
`mocha {{[-R|--reporter]}} {{reporter}}`
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
> Store and read passwords or other sensitive data.
|
||||
> All data is GPG-encrypted, and managed with a Git repository.
|
||||
> More information: <https://www.passwordstore.org>.
|
||||
> More information: <https://git.zx2c4.com/password-store/about/>.
|
||||
|
||||
- Initialize (or re-encrypt) the storage using one or more GPG IDs:
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# pygbag
|
||||
|
||||
> Package Pygame projects as WebAssembly to run in web browsers.
|
||||
> More information: <https://pygame-web.github.io>.
|
||||
> More information: <https://github.com/pygame-web/pygbag#pygbag>.
|
||||
|
||||
- Package a Pygame project and start a local test server:
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# surge
|
||||
|
||||
> Simple web publishing.
|
||||
> More information: <https://surge.sh>.
|
||||
> More information: <https://surge.sh/help/>.
|
||||
|
||||
- Upload a new site to surge.sh:
|
||||
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
# archinstall
|
||||
|
||||
> Guided Arch Linux installer with a twist.
|
||||
> More information: <https://archinstall.readthedocs.io>.
|
||||
> More information: <https://archinstall.archlinux.page/installing/guided.html>.
|
||||
|
||||
- Start the interactive installer:
|
||||
|
||||
`archinstall`
|
||||
|
||||
- Start a preset installer:
|
||||
|
||||
`archinstall {{minimal|unattended}}`
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
# ctr
|
||||
|
||||
> Manage `containerd` containers and images.
|
||||
> More information: <https://containerd.io>.
|
||||
> More information: <https://manned.org/ctr>.
|
||||
|
||||
- List all containers (running and stopped):
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# darling
|
||||
|
||||
> Run macOS software on Linux.
|
||||
> More information: <https://darlinghq.org>.
|
||||
> More information: <https://docs.darlinghq.org/darling-shell.html>.
|
||||
|
||||
- Run a builtin command:
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# goaccess
|
||||
|
||||
> An open source real-time web log analyzer.
|
||||
> More information: <https://goaccess.io>.
|
||||
> More information: <https://goaccess.io/man>.
|
||||
|
||||
- Analyze one or more log files in interactive mode:
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
- Show the contents of the initramfs image for the specified kernel:
|
||||
|
||||
`lsinitrd --kver {{kernel_version}}`
|
||||
`lsinitrd {{[-k|--kver]}} {{kernel_version}}`
|
||||
|
||||
- Show the contents of the specified initramfs image:
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
- List modules included in the initramfs image:
|
||||
|
||||
`lsinitrd --mod`
|
||||
`lsinitrd {{[-m|--mod]}}`
|
||||
|
||||
- Unpack the initramfs to the current directory:
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
# perf
|
||||
|
||||
> Framework for Linux performance counter measurements.
|
||||
> More information: <https://perf.wiki.kernel.org>.
|
||||
> More information: <https://perfwiki.github.io/main/>.
|
||||
|
||||
- Display basic performance counter stats for a command:
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# pstoedit
|
||||
|
||||
> Convert PDF files into various image formats.
|
||||
> More information: <http://www.pstoedit.net>.
|
||||
> More information: <http://www.calvina.de/pstoedit/pstoedit.htm>.
|
||||
|
||||
- Convert a PDF page to PNG or JPEG format:
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
> An `apt` like system for Slackware package management.
|
||||
> Package sources need to be configured in the slapt-getrc file.
|
||||
> More information: <https://software.jaos.org>.
|
||||
> More information: <https://software.jaos.org/git/slapt-get/plain/README>.
|
||||
|
||||
- Update the list of available packages and versions:
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
> Manage local storage pools and volumes using the Stratis storage manager.
|
||||
> Stratis volumes use the XFS filesystem and require the `stratisd` service.
|
||||
> More information: <https://stratis-storage.github.io>.
|
||||
> More information: <https://stratis-storage.github.io/howto/>.
|
||||
|
||||
- Start the Stratis service (must be active before managing pools or volumes):
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# tshark
|
||||
|
||||
> Packet analysis tool, CLI version of Wireshark.
|
||||
> More information: <https://tshark.dev/>.
|
||||
> More information: <https://tshark.dev/#sitemap-in-tshark---help>.
|
||||
|
||||
- Monitor everything on localhost:
|
||||
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
# mate
|
||||
|
||||
> General-purpose text editor for macOS.
|
||||
> More information: <https://macromates.com/>.
|
||||
> More information: <https://macromates.com/textmate/manual/opening-files#mate>.
|
||||
|
||||
- Start TextMate:
|
||||
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
- Specify the filetype of a file:
|
||||
|
||||
`mate --type {{filetype}} {{path/to/file}}`
|
||||
`mate {{[-t|--type]}} {{filetype}} {{path/to/file}}`
|
||||
|
||||
- Open and wait until finished editing a specific file:
|
||||
|
||||
`mate --wait {{path/to/file}}`
|
||||
`mate {{[-w|--wait]}} {{path/to/file}}`
|
||||
|
||||
- Open a file with the cursor at a specific line and column:
|
||||
|
||||
`mate --line {{line_number}}:{{column_number}} {{path/to/file}}`
|
||||
`mate {{[-l|--line]}} {{line_number}}:{{column_number}} {{path/to/file}}`
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
> Interface for OrbStack, a fast and lightweight container and virtual machine runtime for macOS.
|
||||
> Provides Docker-compatible commands and Linux VM management.
|
||||
> More information: <https://docs.orbstack.dev/>.
|
||||
> More information: <https://docs.orbstack.dev/headless>.
|
||||
|
||||
- List all containers and VMs:
|
||||
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
# wacaw
|
||||
|
||||
> Capture both still pictures and video from an attached camera.
|
||||
> More information: <https://webcam-tools.sourceforge.net>.
|
||||
> More information: <https://webcam-tools.sourceforge.net/#parameters>.
|
||||
|
||||
- Take a picture from webcam:
|
||||
|
||||
@@ -9,11 +9,11 @@
|
||||
|
||||
- Record a video:
|
||||
|
||||
`wacaw --video {{filename}} --duration {{10}}`
|
||||
`wacaw --video {{filename}} {{[-D|--duration]}} {{10}}`
|
||||
|
||||
- Take a picture with custom resolution:
|
||||
|
||||
`wacaw --width {{width}} --height {{100}} {{filename}}`
|
||||
`wacaw {{[-x|--width]}} {{width}} {{[-y|--height]}} {{100}} {{filename}}`
|
||||
|
||||
- Copy image just taken to clipboard:
|
||||
|
||||
@@ -21,4 +21,4 @@
|
||||
|
||||
- List the devices available:
|
||||
|
||||
`wacaw --list-devices`
|
||||
`wacaw {{[-L|--list-devices]}}`
|
||||
|
||||
Reference in New Issue
Block a user