mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
Update cheatsheets
This commit is contained in:
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# django-admin
|
||||
|
||||
> Django’s utility for administrative tasks.
|
||||
> More information: <https://docs.djangoproject.com/en/4.2/ref/django-admin/>.
|
||||
> More information: <https://docs.djangoproject.com/en/stable/ref/django-admin/>.
|
||||
|
||||
- Create a new Django project:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# flask
|
||||
|
||||
> A general utility script for Flask applications. Loads the application defined in the `FLASK_APP` environment variable.
|
||||
> More information: <https://flask.palletsprojects.com/en/1.1.x/cli/>.
|
||||
> More information: <https://flask.palletsprojects.com/en/stable/cli/>.
|
||||
|
||||
- Run a development server:
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
> Performance analysis tool for many programming languages.
|
||||
> It profiles the function executions of a program.
|
||||
> More information: <https://ftp.gnu.org/old-gnu/Manuals/gprof-2.9.1/html_mono/gprof.html>.
|
||||
> More information: <https://ftp.gnu.org/old-gnu/Manuals/gprof/html_mono/gprof.html>.
|
||||
|
||||
- Compile binary to default `a.out` with gprof information and run it to get `gmon.out`:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# gst-inspect-1.0
|
||||
|
||||
> Print information on GStreamer plugins.
|
||||
> More information: <https://gstreamer.freedesktop.org/documentation/tools/gst-inspect.html?gi-language=c>.
|
||||
> More information: <https://gstreamer.freedesktop.org/documentation/tools/gst-inspect.html>.
|
||||
|
||||
- Print information on a plugin:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# gst-launch-1.0
|
||||
|
||||
> Build and run a GStreamer pipeline.
|
||||
> More information: <https://gstreamer.freedesktop.org/documentation/tools/gst-launch.html?gi-language=c>.
|
||||
> More information: <https://gstreamer.freedesktop.org/documentation/tools/gst-launch.html>.
|
||||
|
||||
- Play test video in a window:
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# influx
|
||||
|
||||
> InfluxDB command-line client.
|
||||
> More information: <https://docs.influxdata.com/influxdb/v1.7/tools/shell/>.
|
||||
> InfluxDB v1 command-line client.
|
||||
> More information: <https://docs.influxdata.com/influxdb/v1/tools/influx-cli/use-influx-cli/>.
|
||||
|
||||
- Connect to an InfluxDB running on localhost with no credentials:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# initdb
|
||||
|
||||
> Create a PostgreSQL database on disk.
|
||||
> More information: <https://www.postgresql.org/docs/9.5/app-initdb.html>.
|
||||
> More information: <https://www.postgresql.org/docs/current/app-initdb.html>.
|
||||
|
||||
- Create a database at `/usr/local/var/postgres`:
|
||||
|
||||
|
||||
16
tldr/ipcalc
16
tldr/ipcalc
@@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# ipcalc
|
||||
|
||||
> A tool to calculate IP information (subnet, broadcast, host range) from an IP address and netmask.
|
||||
> Calculate IP information (subnet, broadcast, host range) from an IP address and netmask.
|
||||
> More information: <https://manned.org/ipcalc>.
|
||||
|
||||
- Display network info for an IP address:
|
||||
@@ -14,16 +14,20 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Display network info using CIDR notation:
|
||||
|
||||
`ipcalc {{192.168.0.1/24}}`
|
||||
`ipcalc {{192.168.0.1}}/{{24}}`
|
||||
|
||||
- Display network info using a separate netmask:
|
||||
- Display network info using a dotted decimal netmask:
|
||||
|
||||
`ipcalc {{192.168.0.1}} {{255.255.255.0}}`
|
||||
|
||||
- Show only CIDR notation output:
|
||||
- Suppress bitwise output:
|
||||
|
||||
`ipcalc {{[-c|--class]}} {{192.168.0.1/24}}`
|
||||
`ipcalc {{[-b|--nobinary]}} {{192.168.0.1}}`
|
||||
|
||||
- Split a network into specified sized blocks:
|
||||
|
||||
`ipcalc {{[-s|--split]}} {{size1 size2 size3 ...}} {{192.168.0.1}}`
|
||||
|
||||
- Show version information:
|
||||
|
||||
`ipcalc --version`
|
||||
`ipcalc {{[-v|--version]}}`
|
||||
|
||||
@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
> Authenticate a principal with a Kerberos server to gain and cache a ticket.
|
||||
> Note: A Kerberos principal can be either a user, service, or application.
|
||||
> More information: <https://web.mit.edu/kerberos/krb5-1.12/doc/user/user_commands/kinit.html>.
|
||||
> More information: <https://web.mit.edu/kerberos/krb5-latest/doc/user/user_commands/kinit.html>.
|
||||
|
||||
- Authenticate a user and obtain a ticket-granting ticket:
|
||||
|
||||
|
||||
2
tldr/ld
2
tldr/ld
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# ld
|
||||
|
||||
> Link object files together.
|
||||
> More information: <https://sourceware.org/binutils/docs-2.38/ld.html>.
|
||||
> More information: <https://sourceware.org/binutils/docs/ld.html>.
|
||||
|
||||
- Link a specific object file with no dependencies into an executable:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# xrdb
|
||||
|
||||
> X window server's resource database utility for Unix-like systems.
|
||||
> More information: <https://www.x.org/releases/X11R7.7/doc/man/man1/xrdb.1.xhtml>.
|
||||
> More information: <https://www.x.org/releases/current/doc/man/man1/xrdb.1.xhtml>.
|
||||
|
||||
- Start `xrdb` in interactive mode:
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
> MuseScore 3 sheet music editor.
|
||||
> See also: `lilypond`.
|
||||
> More information: <https://musescore.org/en/handbook/3/command-line-options>.
|
||||
> More information: <https://musescore.org/en/handbook/4/command-line-options>.
|
||||
|
||||
- Use a specific audio driver:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# npm uninstall
|
||||
|
||||
> Remove a package.
|
||||
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-uninstall>.
|
||||
> More information: <https://docs.npmjs.com/cli/commands/npm-uninstall>.
|
||||
|
||||
- Remove a package from the current project:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# npm unpublish
|
||||
|
||||
> Remove a package from the npm registry.
|
||||
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-unpublish>.
|
||||
> More information: <https://docs.npmjs.com/cli/commands/npm-unpublish>.
|
||||
|
||||
- Unpublish a specific package version:
|
||||
|
||||
|
||||
2
tldr/oc
2
tldr/oc
@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
> The OpenShift Container Platform CLI.
|
||||
> Allows for application and container management.
|
||||
> More information: <https://docs.openshift.com/container-platform/3.11/cli_reference/get_started_cli.html>.
|
||||
> More information: <https://docs.openshift.com/container-platform/latest/cli_reference/get_started_cli.html>.
|
||||
|
||||
- Log in to the OpenShift Container Platform server:
|
||||
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux [`
|
||||
`tldr {{[-p|--platform]}} linux [`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux b2sum`
|
||||
`tldr {{[-p|--platform]}} linux b2sum`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux base32`
|
||||
`tldr {{[-p|--platform]}} linux base32`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux base64`
|
||||
`tldr {{[-p|--platform]}} linux base64`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux basename`
|
||||
`tldr {{[-p|--platform]}} linux basename`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux basenc`
|
||||
`tldr {{[-p|--platform]}} linux basenc`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux cat`
|
||||
`tldr {{[-p|--platform]}} linux cat`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux chcon`
|
||||
`tldr {{[-p|--platform]}} linux chcon`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux chgrp`
|
||||
`tldr {{[-p|--platform]}} linux chgrp`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux chmod`
|
||||
`tldr {{[-p|--platform]}} linux chmod`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux chown`
|
||||
`tldr {{[-p|--platform]}} linux chown`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux chroot`
|
||||
`tldr {{[-p|--platform]}} linux chroot`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux cksum`
|
||||
`tldr {{[-p|--platform]}} linux cksum`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux comm`
|
||||
`tldr {{[-p|--platform]}} linux comm`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux cp`
|
||||
`tldr {{[-p|--platform]}} linux cp`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux csplit`
|
||||
`tldr {{[-p|--platform]}} linux csplit`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux cut`
|
||||
`tldr {{[-p|--platform]}} linux cut`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux date`
|
||||
`tldr {{[-p|--platform]}} linux date`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux dd`
|
||||
`tldr {{[-p|--platform]}} linux dd`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux df`
|
||||
`tldr {{[-p|--platform]}} linux df`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux dir`
|
||||
`tldr {{[-p|--platform]}} linux dir`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux dircolors`
|
||||
`tldr {{[-p|--platform]}} linux dircolors`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux dirname`
|
||||
`tldr {{[-p|--platform]}} linux dirname`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux dnsdomainname`
|
||||
`tldr {{[-p|--platform]}} linux dnsdomainname`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux echo`
|
||||
`tldr {{[-p|--platform]}} linux echo`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ed`
|
||||
`tldr {{[-p|--platform]}} linux ed`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux egrep`
|
||||
`tldr {{[-p|--platform]}} linux egrep`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux env`
|
||||
`tldr {{[-p|--platform]}} linux env`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux expand`
|
||||
`tldr {{[-p|--platform]}} linux expand`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux expr`
|
||||
`tldr {{[-p|--platform]}} linux expr`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux factor`
|
||||
`tldr {{[-p|--platform]}} linux factor`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux false`
|
||||
`tldr {{[-p|--platform]}} linux false`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux fgrep`
|
||||
`tldr {{[-p|--platform]}} linux fgrep`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux find`
|
||||
`tldr {{[-p|--platform]}} linux find`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux fmt`
|
||||
`tldr {{[-p|--platform]}} linux fmt`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux fold`
|
||||
`tldr {{[-p|--platform]}} linux fold`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ftp`
|
||||
`tldr {{[-p|--platform]}} linux ftp`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux grep`
|
||||
`tldr {{[-p|--platform]}} linux grep`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux groups`
|
||||
`tldr {{[-p|--platform]}} linux groups`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux head`
|
||||
`tldr {{[-p|--platform]}} linux head`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux hostid`
|
||||
`tldr {{[-p|--platform]}} linux hostid`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux hostname`
|
||||
`tldr {{[-p|--platform]}} linux hostname`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux id`
|
||||
`tldr {{[-p|--platform]}} linux id`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ifconfig`
|
||||
`tldr {{[-p|--platform]}} linux ifconfig`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux indent`
|
||||
`tldr {{[-p|--platform]}} linux indent`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux install`
|
||||
`tldr {{[-p|--platform]}} linux install`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux join`
|
||||
`tldr {{[-p|--platform]}} linux join`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux kill`
|
||||
`tldr {{[-p|--platform]}} linux kill`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux libtool`
|
||||
`tldr {{[-p|--platform]}} linux libtool`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux libtoolize`
|
||||
`tldr {{[-p|--platform]}} linux libtoolize`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux link`
|
||||
`tldr {{[-p|--platform]}} linux link`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ln`
|
||||
`tldr {{[-p|--platform]}} linux ln`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux locate`
|
||||
`tldr {{[-p|--platform]}} linux locate`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux logger`
|
||||
`tldr {{[-p|--platform]}} linux logger`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux logname`
|
||||
`tldr {{[-p|--platform]}} linux logname`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ls`
|
||||
`tldr {{[-p|--platform]}} linux ls`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux make`
|
||||
`tldr {{[-p|--platform]}} linux make`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux md5sum`
|
||||
`tldr {{[-p|--platform]}} linux md5sum`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux mkdir`
|
||||
`tldr {{[-p|--platform]}} linux mkdir`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux mkfifo`
|
||||
`tldr {{[-p|--platform]}} linux mkfifo`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux mknod`
|
||||
`tldr {{[-p|--platform]}} linux mknod`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux mktemp`
|
||||
`tldr {{[-p|--platform]}} linux mktemp`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux mv`
|
||||
`tldr {{[-p|--platform]}} linux mv`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux nice`
|
||||
`tldr {{[-p|--platform]}} linux nice`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux nl`
|
||||
`tldr {{[-p|--platform]}} linux nl`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux nohup`
|
||||
`tldr {{[-p|--platform]}} linux nohup`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux nproc`
|
||||
`tldr {{[-p|--platform]}} linux nproc`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux od`
|
||||
`tldr {{[-p|--platform]}} linux od`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux paste`
|
||||
`tldr {{[-p|--platform]}} linux paste`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux pathchk`
|
||||
`tldr {{[-p|--platform]}} linux pathchk`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ping`
|
||||
`tldr {{[-p|--platform]}} linux ping`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ping6`
|
||||
`tldr {{[-p|--platform]}} linux ping6`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux pinky`
|
||||
`tldr {{[-p|--platform]}} linux pinky`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux pr`
|
||||
`tldr {{[-p|--platform]}} linux pr`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux printenv`
|
||||
`tldr {{[-p|--platform]}} linux printenv`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux printf`
|
||||
`tldr {{[-p|--platform]}} linux printf`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux ptx`
|
||||
`tldr {{[-p|--platform]}} linux ptx`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux pwd`
|
||||
`tldr {{[-p|--platform]}} linux pwd`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux rcp`
|
||||
`tldr {{[-p|--platform]}} linux rcp`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux readlink`
|
||||
`tldr {{[-p|--platform]}} linux readlink`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux realpath`
|
||||
`tldr {{[-p|--platform]}} linux realpath`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux rexec`
|
||||
`tldr {{[-p|--platform]}} linux rexec`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux rlogin`
|
||||
`tldr {{[-p|--platform]}} linux rlogin`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux rm`
|
||||
`tldr {{[-p|--platform]}} linux rm`
|
||||
|
||||
@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr -p linux rmdir`
|
||||
`tldr {{[-p|--platform]}} linux rmdir`
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user