mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-23 18:44:14 +02:00
GNU software: use direct documentation link (#17731)
This commit is contained in:
parent
fa21bc16d3
commit
a71ca79e59
13 changed files with 13 additions and 13 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Copy files in and out of archives.
|
> Copy files in and out of archives.
|
||||||
> Supports the following archive formats: cpio's custom binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar.
|
> Supports the following archive formats: cpio's custom binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar.
|
||||||
> More information: <https://www.gnu.org/software/cpio>.
|
> More information: <https://www.gnu.org/software/cpio/manual/cpio.html#Invoking-cpio>.
|
||||||
|
|
||||||
- Take a list of file names from `stdin` and add them onto an archive (copy-[o]ut) in cpio's binary forma:
|
- Take a list of file names from `stdin` and add them onto an archive (copy-[o]ut) in cpio's binary forma:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Compile C++ source files.
|
> Compile C++ source files.
|
||||||
> Part of GCC (GNU Compiler Collection).
|
> Part of GCC (GNU Compiler Collection).
|
||||||
> More information: <https://gcc.gnu.org>.
|
> More information: <https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html>.
|
||||||
|
|
||||||
- Compile a source code file into an executable binary:
|
- Compile a source code file into an executable binary:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# gcal
|
# gcal
|
||||||
|
|
||||||
> Display calendar.
|
> Display calendar.
|
||||||
> More information: <https://www.gnu.org/software/gcal>.
|
> More information: <https://www.gnu.org/software/gcal/manual/gcal.html#Invoking-Gcal>.
|
||||||
|
|
||||||
- Display calendar for the current month:
|
- Display calendar for the current month:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Preprocess and compile C and C++ source files, then assemble and link them together.
|
> Preprocess and compile C and C++ source files, then assemble and link them together.
|
||||||
> Part of GCC (GNU Compiler Collection).
|
> Part of GCC (GNU Compiler Collection).
|
||||||
> More information: <https://gcc.gnu.org>.
|
> More information: <https://gcc.gnu.org/onlinedocs/gcc/>.
|
||||||
|
|
||||||
- Compile multiple source files into an executable:
|
- Compile multiple source files into an executable:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# gdb
|
# gdb
|
||||||
|
|
||||||
> The GNU Debugger.
|
> The GNU Debugger.
|
||||||
> More information: <https://www.gnu.org/software/gdb>.
|
> More information: <https://sourceware.org/gdb/current/onlinedocs/gdb#Invocation>.
|
||||||
|
|
||||||
- Debug an executable:
|
- Debug an executable:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# guile
|
# guile
|
||||||
|
|
||||||
> Guile Scheme interpreter.
|
> Guile Scheme interpreter.
|
||||||
> More information: <https://www.gnu.org/software/guile>.
|
> More information: <https://www.gnu.org/software/guile/manual/guile.html#Invoking-Guile>.
|
||||||
|
|
||||||
- Start a REPL (interactive shell):
|
- Start a REPL (interactive shell):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# help2man
|
# help2man
|
||||||
|
|
||||||
> Produce simple man pages from an executable's `--help` and `--version` output.
|
> Produce simple man pages from an executable's `--help` and `--version` output.
|
||||||
> More information: <https://www.gnu.org/software/help2man>.
|
> More information: <https://www.gnu.org/software/help2man/#Invoking-help2man>.
|
||||||
|
|
||||||
- Generate a man page for an executable:
|
- Generate a man page for an executable:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> A lossless data compressor with a user interface similar to `gzip` or `bzip2`.
|
> A lossless data compressor with a user interface similar to `gzip` or `bzip2`.
|
||||||
> Lzip uses a simplified form of the "Lempel-Ziv-Markovchain-Algorithm" (LZMA) stream format and provides 3-factor integrity checking to maximize interoperability and optimize safety.
|
> Lzip uses a simplified form of the "Lempel-Ziv-Markovchain-Algorithm" (LZMA) stream format and provides 3-factor integrity checking to maximize interoperability and optimize safety.
|
||||||
> More information: <https://www.nongnu.org/lzip>.
|
> More information: <https://www.nongnu.org/lzip/manual/lzip_manual.html#Invoking-lzip>.
|
||||||
|
|
||||||
- Archive a file, replacing it with with a compressed version:
|
- Archive a file, replacing it with with a compressed version:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# m4
|
# m4
|
||||||
|
|
||||||
> Macro processor.
|
> Macro processor.
|
||||||
> More information: <https://www.gnu.org/software/m4>.
|
> More information: <https://www.gnu.org/software/m4/manual/m4.html#Invoking-m4>.
|
||||||
|
|
||||||
- Process macros in a file:
|
- Process macros in a file:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# parallel
|
# parallel
|
||||||
|
|
||||||
> Run commands on multiple CPU cores.
|
> Run commands on multiple CPU cores.
|
||||||
> More information: <https://www.gnu.org/software/parallel>.
|
> More information: <https://www.gnu.org/software/parallel/man.html>.
|
||||||
|
|
||||||
- Gzip several files at once, using all cores:
|
- Gzip several files at once, using all cores:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Archiving utility.
|
> Archiving utility.
|
||||||
> Often combined with a compression method, such as `gzip` or `bzip2`.
|
> Often combined with a compression method, such as `gzip` or `bzip2`.
|
||||||
> More information: <https://www.gnu.org/software/tar>.
|
> More information: <https://www.gnu.org/software/tar/manual/tar.html>.
|
||||||
|
|
||||||
- [c]reate an archive and write it to a [f]ile:
|
- [c]reate an archive and write it to a [f]ile:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# units
|
# units
|
||||||
|
|
||||||
> Convert between two units of measure.
|
> Convert between two units of measure.
|
||||||
> More information: <https://www.gnu.org/software/units/>.
|
> More information: <https://www.gnu.org/software/units/manual/units.html>.
|
||||||
|
|
||||||
- Run in interactive mode:
|
- Run in interactive mode:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# zile
|
# zile
|
||||||
|
|
||||||
> A lightweight clone of the Emacs text editor.
|
> A lightweight clone of the Emacs text editor.
|
||||||
> More information: <https://www.gnu.org/software/zile/>.
|
> More information: <https://manned.org/zile>.
|
||||||
|
|
||||||
- Start a buffer for temporary notes, which won't be saved:
|
- Start a buffer for temporary notes, which won't be saved:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue