Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-24 00:19:06 +00:00
parent 94c28849c9
commit 0861ba59e2
165 changed files with 177 additions and 173 deletions

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# django-admin # django-admin
> Djangos utility for administrative tasks. > Djangos 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: - Create a new Django project:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# flask # flask
> A general utility script for Flask applications. Loads the application defined in the `FLASK_APP` environment variable. > 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: - Run a development server:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Performance analysis tool for many programming languages. > Performance analysis tool for many programming languages.
> It profiles the function executions of a program. > 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`: - Compile binary to default `a.out` with gprof information and run it to get `gmon.out`:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# gst-inspect-1.0 # gst-inspect-1.0
> Print information on GStreamer plugins. > 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: - Print information on a plugin:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# gst-launch-1.0 # gst-launch-1.0
> Build and run a GStreamer pipeline. > 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: - Play test video in a window:

View File

@@ -5,8 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
--- ---
# influx # influx
> InfluxDB command-line client. > InfluxDB v1 command-line client.
> More information: <https://docs.influxdata.com/influxdb/v1.7/tools/shell/>. > More information: <https://docs.influxdata.com/influxdb/v1/tools/influx-cli/use-influx-cli/>.
- Connect to an InfluxDB running on localhost with no credentials: - Connect to an InfluxDB running on localhost with no credentials:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# initdb # initdb
> Create a PostgreSQL database on disk. > 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`: - Create a database at `/usr/local/var/postgres`:

View File

@@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git
--- ---
# ipcalc # 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>. > More information: <https://manned.org/ipcalc>.
- Display network info for an IP address: - 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: - 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}}` `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: - Show version information:
`ipcalc --version` `ipcalc {{[-v|--version]}}`

View File

@@ -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. > 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. > 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: - Authenticate a user and obtain a ticket-granting ticket:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# ld # ld
> Link object files together. > 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: - Link a specific object file with no dependencies into an executable:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# xrdb # xrdb
> X window server's resource database utility for Unix-like systems. > 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: - Start `xrdb` in interactive mode:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> MuseScore 3 sheet music editor. > MuseScore 3 sheet music editor.
> See also: `lilypond`. > 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: - Use a specific audio driver:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# npm uninstall # npm uninstall
> Remove a package. > 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: - Remove a package from the current project:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# npm unpublish # npm unpublish
> Remove a package from the npm registry. > 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: - Unpublish a specific package version:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> The OpenShift Container Platform CLI. > The OpenShift Container Platform CLI.
> Allows for application and container management. > 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: - Log in to the OpenShift Container Platform server:

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux [` `tldr {{[-p|--platform]}} linux [`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux b2sum` `tldr {{[-p|--platform]}} linux b2sum`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux base32` `tldr {{[-p|--platform]}} linux base32`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux base64` `tldr {{[-p|--platform]}} linux base64`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux basename` `tldr {{[-p|--platform]}} linux basename`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux basenc` `tldr {{[-p|--platform]}} linux basenc`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux cat` `tldr {{[-p|--platform]}} linux cat`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux chcon` `tldr {{[-p|--platform]}} linux chcon`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux chgrp` `tldr {{[-p|--platform]}} linux chgrp`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux chmod` `tldr {{[-p|--platform]}} linux chmod`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux chown` `tldr {{[-p|--platform]}} linux chown`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux chroot` `tldr {{[-p|--platform]}} linux chroot`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux cksum` `tldr {{[-p|--platform]}} linux cksum`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux comm` `tldr {{[-p|--platform]}} linux comm`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux cp` `tldr {{[-p|--platform]}} linux cp`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux csplit` `tldr {{[-p|--platform]}} linux csplit`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux cut` `tldr {{[-p|--platform]}} linux cut`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux date` `tldr {{[-p|--platform]}} linux date`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux dd` `tldr {{[-p|--platform]}} linux dd`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux df` `tldr {{[-p|--platform]}} linux df`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux dir` `tldr {{[-p|--platform]}} linux dir`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux dircolors` `tldr {{[-p|--platform]}} linux dircolors`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux dirname` `tldr {{[-p|--platform]}} linux dirname`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux dnsdomainname` `tldr {{[-p|--platform]}} linux dnsdomainname`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux echo` `tldr {{[-p|--platform]}} linux echo`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ed` `tldr {{[-p|--platform]}} linux ed`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux egrep` `tldr {{[-p|--platform]}} linux egrep`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux env` `tldr {{[-p|--platform]}} linux env`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux expand` `tldr {{[-p|--platform]}} linux expand`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux expr` `tldr {{[-p|--platform]}} linux expr`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux factor` `tldr {{[-p|--platform]}} linux factor`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux false` `tldr {{[-p|--platform]}} linux false`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux fgrep` `tldr {{[-p|--platform]}} linux fgrep`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux find` `tldr {{[-p|--platform]}} linux find`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux fmt` `tldr {{[-p|--platform]}} linux fmt`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux fold` `tldr {{[-p|--platform]}} linux fold`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ftp` `tldr {{[-p|--platform]}} linux ftp`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux grep` `tldr {{[-p|--platform]}} linux grep`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux groups` `tldr {{[-p|--platform]}} linux groups`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux head` `tldr {{[-p|--platform]}} linux head`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux hostid` `tldr {{[-p|--platform]}} linux hostid`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux hostname` `tldr {{[-p|--platform]}} linux hostname`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux id` `tldr {{[-p|--platform]}} linux id`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ifconfig` `tldr {{[-p|--platform]}} linux ifconfig`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux indent` `tldr {{[-p|--platform]}} linux indent`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux install` `tldr {{[-p|--platform]}} linux install`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux join` `tldr {{[-p|--platform]}} linux join`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux kill` `tldr {{[-p|--platform]}} linux kill`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux libtool` `tldr {{[-p|--platform]}} linux libtool`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux libtoolize` `tldr {{[-p|--platform]}} linux libtoolize`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux link` `tldr {{[-p|--platform]}} linux link`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ln` `tldr {{[-p|--platform]}} linux ln`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux locate` `tldr {{[-p|--platform]}} linux locate`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux logger` `tldr {{[-p|--platform]}} linux logger`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux logname` `tldr {{[-p|--platform]}} linux logname`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ls` `tldr {{[-p|--platform]}} linux ls`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux make` `tldr {{[-p|--platform]}} linux make`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux md5sum` `tldr {{[-p|--platform]}} linux md5sum`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux mkdir` `tldr {{[-p|--platform]}} linux mkdir`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux mkfifo` `tldr {{[-p|--platform]}} linux mkfifo`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux mknod` `tldr {{[-p|--platform]}} linux mknod`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux mktemp` `tldr {{[-p|--platform]}} linux mktemp`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux mv` `tldr {{[-p|--platform]}} linux mv`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux nice` `tldr {{[-p|--platform]}} linux nice`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux nl` `tldr {{[-p|--platform]}} linux nl`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux nohup` `tldr {{[-p|--platform]}} linux nohup`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux nproc` `tldr {{[-p|--platform]}} linux nproc`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux od` `tldr {{[-p|--platform]}} linux od`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux paste` `tldr {{[-p|--platform]}} linux paste`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux pathchk` `tldr {{[-p|--platform]}} linux pathchk`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ping` `tldr {{[-p|--platform]}} linux ping`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ping6` `tldr {{[-p|--platform]}} linux ping6`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux pinky` `tldr {{[-p|--platform]}} linux pinky`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux pr` `tldr {{[-p|--platform]}} linux pr`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux printenv` `tldr {{[-p|--platform]}} linux printenv`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux printf` `tldr {{[-p|--platform]}} linux printf`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux ptx` `tldr {{[-p|--platform]}} linux ptx`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux pwd` `tldr {{[-p|--platform]}} linux pwd`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux rcp` `tldr {{[-p|--platform]}} linux rcp`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux readlink` `tldr {{[-p|--platform]}} linux readlink`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux realpath` `tldr {{[-p|--platform]}} linux realpath`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux rexec` `tldr {{[-p|--platform]}} linux rexec`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux rlogin` `tldr {{[-p|--platform]}} linux rlogin`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - View documentation for the original command:
`tldr -p linux rm` `tldr {{[-p|--platform]}} linux rm`

View File

@@ -9,4 +9,4 @@ source: https://github.com/tldr-pages/tldr.git
- View documentation for the original command: - 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