Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-27 00:21:02 +00:00
parent 47db9e503e
commit 5bf37ece1a
136 changed files with 315 additions and 144 deletions

View File

@@ -7,8 +7,13 @@ source: https://github.com/tldr-pages/tldr.git
> Quickly jump among the directories you visit the most.
> Aliases like j or jc are provided for even less typing.
> See also: `bashmarks`.
> More information: <https://github.com/wting/autojump>.
- Add the autojump aliases to your shell:
`source /usr/share/autojump/autojump.{{bash|fish|zsh}}`
- Jump to a directory that contains the given pattern:
`j {{pattern}}`

View File

@@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# bashmarks
> Save and jump to commonly used directories using 1 character commands.
> See also: `autojump`.
> More information: <https://github.com/huyng/bashmarks>.
- Add the bashmark aliases to your shell:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# chars
> Display names and codes for various ASCII and Unicode characters and code points.
> More information: <https://github.com/antifuchs/chars>.
> More information: <https://github.com/boinkor-net/chars#running>.
- Look up a character by its value:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# drupal-check
> Check Drupal PHP code for deprecations.
> More information: <https://github.com/mglaman/drupal-check>.
> More information: <https://github.com/mglaman/drupal-check#usage>.
- Check the code in a specific directory for deprecations:
@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- Check the code excluding a comma-separated list of directories:
`drupal-check --exclude-dir {{path/to/excluded_directory}},{{path/to/excluded_files/*.php}} {{path/to/directory}}`
`drupal-check {{[-e|--exclude-dir]}} {{path/to/excluded_directory}},{{path/to/excluded_files/*.php}} {{path/to/directory}}`
- Don't show a progress bar:
@@ -22,4 +22,4 @@ source: https://github.com/tldr-pages/tldr.git
- Perform static analysis to detect bad coding practices:
`drupal-check --analysis {{path/to/directory}}`
`drupal-check {{[-a|--analysis]}} {{path/to/directory}}`

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# drush
> A command-line shell and scripting interface for Drupal.
> More information: <https://www.drush.org>.
> More information: <https://www.drush.org/latest/usage/>.
- Enable module "foo":

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# grumphp
> A PHP Composer plugin that enables source code quality checks.
> More information: <https://github.com/phpro/grumphp>.
> More information: <https://github.com/phpro/grumphp#commands>.
- Register the Git hooks:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Apache Guacamole proxy daemon.
> Support loader for client plugins to interface between the Guacamole protocol and any arbitrary remote desktop protocol (e.g. RDP, VNC, Other).
> More information: <https://guacamole.apache.org/>.
> More information: <https://manned.org/guacd>.
- Bind to a specific port on localhost:

37
tldr/i3 Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# i3
> A tiling window manager for X11.
> More information: <https://i3wm.org/docs/userguide.html>.
- Start `i3` (Note that a pre-existing window manager must not be open when this command is run):
`i3`
- Open a new terminal window:
`<Super Enter>`
- Move the focused window to a workspace:
`<Super Shift {{Number}}>`
- Switch to a workspace:
`<Super {{Number}}>`
- Split the next window horizontally:
`<Super h>`
- Split the next window vertically:
`<Super v>`
- Open an application launcher:
`<Super d>`

12
tldr/impacket-mqtt_check Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# impacket-mqtt_check
> This command is an alias of `mqtt_check.py`.
- View documentation for the original command:
`tldr mqtt_check.py`

View File

@@ -5,8 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
---
# info
> Reads documentation stored in the info format.
> More information: <https://en.wikipedia.org/wiki/Info_(Unix)>.
> Read documentation stored in the info format.
> More information: <https://manned.org/man/info>.
- Start reading top-level directory menu:

12
tldr/j Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# j
> This command is an alias of `autojump`.
- View documentation for the original command:
`tldr autojump`

19
tldr/jc
View File

@@ -5,21 +5,12 @@ source: https://github.com/tldr-pages/tldr.git
---
# jc
> Convert the output of multiple commands to JSON.
> More information: <https://github.com/kellyjonbrazil/jc>.
> `jc` can refer to multiple commands with the same name.
- Convert command output to JSON via pipe:
- View documentation for the `JSON` serializer:
`{{ifconfig}} | jc {{--ifconfig}}`
`tldr jc.json`
- Convert command output to JSON via magic syntax:
- View documentation for the `autojump` alias:
`jc {{ifconfig}}`
- Output pretty JSON via pipe:
`{{ifconfig}} | jc {{--ifconfig}} {{[-p|--pretty]}}`
- Output pretty JSON via magic syntax:
`jc {{[-p|--pretty]}} {{ifconfig}}`
`tldr autojump`

25
tldr/jc.json Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jc
> Convert the output of multiple commands to JSON.
> More information: <https://github.com/kellyjonbrazil/jc>.
- Convert command output to JSON via pipe:
`{{ifconfig}} | jc {{--ifconfig}}`
- Convert command output to JSON via magic syntax:
`jc {{ifconfig}}`
- Output pretty JSON via pipe:
`{{ifconfig}} | jc {{--ifconfig}} {{[-p|--pretty]}}`
- Output pretty JSON via magic syntax:
`jc {{[-p|--pretty]}} {{ifconfig}}`

12
tldr/jco Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jco
> This command is an alias of `autojump`.
- View documentation for the original command:
`tldr autojump`

12
tldr/jo Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jo
> This command is an alias of `autojump`.
- View documentation for the original command:
`tldr autojump`

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# jp2a
> Convert JPEG images to ASCII.
> More information: <https://csl.name/jp2a/>.
> More information: <https://manned.org/jp2a>.
- Read JPEG image from a file and print in ASCII:

34
tldr/mqtt_check.py Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# mqtt_check.py
> Simple utility for testing and validating MQTT login credentials.
> Part of the Impacket suite.
> More information: <https://github.com/fortra/impacket>.
- Check MQTT login credentials for a target (MQTT broker's hostname):
`mqtt_check.py {{domain}}/{{username}}:{{password}}@{{targetName}}`
- Specify a custom client ID for authentication:
`mqtt_check.py -client-id {{client_id}} {{domain}}/{{username}}:{{password}}@{{targetName}}`
- Enable SSL for the connection:
`mqtt_check.py -ssl {{domain}}/{{username}}:{{password}}@{{targetName}}`
- Connect to a specific port (default is 1883):
`mqtt_check.py -port {{port}} {{domain}}/{{username}}:{{password}}@{{targetName}}`
- Enable debug output:
`mqtt_check.py -debug {{domain}}/{{username}}:{{password}}@{{targetName}}`
- Display help message:
`mqtt_check.py --help`

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

Some files were not shown because too many files have changed in this diff Show More