add more information links

This commit is contained in:
marchersimon
2021-04-17 17:15:37 +02:00
committed by Starbeamrainbowlabs
parent 228e3cc92e
commit bc5d06ed1e
36 changed files with 36 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# dc
> An arbitrary precision calculator. Uses reverse polish notation (RPN).
> More information: <https://www.gnu.org/software/bc/manual/dc-1.05/>.
- Run calculator in interactive mode:

View File

@@ -1,6 +1,7 @@
# dhclient
> DHCP client.
> More information: <https://manned.org/dhclient>.
- Get an IP address for the `eth0` interface:

View File

@@ -1,6 +1,7 @@
# diffstat
> Create a histogram from the output of the `diff` command.
> More information: <https://manned.org/diffstat>.
- Display changes in a histogram:

View File

@@ -2,6 +2,7 @@
> Displays or manipulates the directory stack.
> The directory stack is a list of recently visited directories that can be manipulated with the `pushd` and `popd` commands.
> More information: <https://www.gnu.org/software/bash/manual/bash.html\#Directory-Stack-Builtins>.
- Display the directory stack with a space between each entry:

View File

@@ -1,6 +1,7 @@
# dot
> A command-line tool to produce layered drawings of directed graphs.
> More information: <https://www.graphviz.org/pdf/dotguide.pdf>.
- Render an image file and determine output filename based on input filename and selected format:

View File

@@ -1,6 +1,7 @@
# drill
> Perform various DNS queries.
> More information: <https://manned.org/drill>.
- Lookup the IP(s) associated with a hostname (A records):

View File

@@ -1,6 +1,7 @@
# entr
> Run arbitrary commands when files change.
> More information: <https://manned.org/entr>.
- Rebuild with `make` if any file in any subdirectory changes:

View File

@@ -2,6 +2,7 @@
> Substitutes environment variables with their value in shell format strings.
> Variables to be replaced should be in either `${var}` or `$var` format.
> More information: <https://www.gnu.org/software/gettext/manual/html_node/envsubst-Invocation.html>.
- Replace environment variables in stdin and output to stdout:

View File

@@ -1,6 +1,7 @@
# exit
> Exit the shell.
> More information: <https://manned.org/exit>.
- Exit the shell with the exit code of the last command executed:

View File

@@ -1,6 +1,7 @@
# fg
> Run jobs in foreground.
> More information: <https://manned.org/fg>.
- Bring most recently suspended background job to foreground:

View File

@@ -2,6 +2,7 @@
> Matches patterns in files.
> Supports simple patterns and regular expressions.
> More information: <https://manned.org/fgrep>.
- Search for an exact string in a file:

View File

@@ -1,6 +1,7 @@
# figlet
> Generate ASCII banners from user input.
> More information: <http://www.figlet.org/figlet-man.html>.
- Generate by directly inputting text:

View File

@@ -1,6 +1,7 @@
# find
> Find files or directories under the given directory tree, recursively.
> More information: <https://manned.org/find>.
- Find files by extension:

View File

@@ -1,6 +1,7 @@
# finger
> User information lookup program.
> More information: <https://manned.org/finger>.
- Display information about currently logged in users:

View File

@@ -2,6 +2,7 @@
> Lexical analyser generator. Based on `lex`.
> Given the specification for a lexical analyser, generates C code implementing it.
> More information: <https://manned.org/flex>.
- Generate an analyser from a flex file:

View File

@@ -2,6 +2,7 @@
> Compiles resource files (e.g. images) into a binary resource bundle.
> These may be linked into GTK applications using the GResource API.
> More information: <https://manned.org/glib-compile-resources>.
- Compile resources referenced in `file.gresource.xml` to a .gresource binary:

View File

@@ -1,6 +1,7 @@
# gpg-zip
> Encrypt files and directories in an archive using GPG.
> More information: <https://www.gnupg.org/documentation/manuals/gnupg/gpg_002dzip.html>.
- Encrypt a directory into `archive.gpg` using a passphrase:

View File

@@ -1,6 +1,7 @@
# gunzip
> Extract file(s) from a gzip (.gz) archive.
> More information: <https://manned.org/gunzip>.
- Extract a file from an archive, replacing the original file if it exists:

View File

@@ -1,6 +1,7 @@
# gzip
> Compress/uncompress files with gzip compression (LZ77).
> More information: <https://www.gnu.org/software/gzip/manual/gzip.html>.
- Compress a file, replacing it with a gzipped compressed version: