Skip to content

Commit 9525223

Browse files
committed
Improve command quality
1 parent d0657e1 commit 9525223

185 files changed

Lines changed: 3461 additions & 1377 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/commands/acountry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ Part of the **c-ares** asynchronous DNS resolver library tools.
4444

4545
# SEE ALSO
4646

47-
[ahost](/man/ahost)(1), [adig](/man/adig)(1), [host](/man/host)(1), [dig](/man/dig)(1)
47+
[ahost](/man/ahost)(1), [adig](/man/adig)(1), [host](/man/host)(1), [dig](/man/dig)(1), [nslookup](/man/nslookup)(1)

assets/commands/adb-reboot.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Reboot into **sideload** mode
2020

2121
```adb reboot sideload```
2222

23+
Reboot into sideload mode and **automatically reboot** when done
24+
25+
```adb reboot sideload-auto-reboot```
26+
2327
# SYNOPSIS
2428

2529
**adb reboot** [_bootloader_|_recovery_|_sideload_|_sideload-auto-reboot_]
@@ -52,4 +56,4 @@ Bootloader and recovery modes may require unlocked bootloader or specific device
5256

5357
# SEE ALSO
5458

55-
[adb](/man/adb)(1), [fastboot](/man/fastboot)(1)
59+
[adb](/man/adb)(1), [adb-shell](/man/adb-shell)(1), [fastboot](/man/fastboot)(1)

assets/commands/airflow.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TAGLINE
22

3-
Author, schedule, and monitor data workflows
3+
Platform to author, schedule, and monitor data workflows
44

55
# TLDR
66

@@ -32,6 +32,14 @@ Author, schedule, and monitor data workflows
3232

3333
```airflow dags pause [dag_id]```
3434

35+
**Unpause a DAG** (resume scheduling)
36+
37+
```airflow dags unpause [dag_id]```
38+
39+
**List all DAG runs** for a specific DAG
40+
41+
```airflow dags list-runs -d [dag_id]```
42+
3543
**Initialize the database**
3644

3745
```airflow db migrate```
@@ -118,4 +126,4 @@ Apache Airflow was created at **Airbnb** in **2014** by Maxime Beauchemin to man
118126

119127
# SEE ALSO
120128

121-
[luigi](/man/luigi)(1), [prefect](/man/prefect)(1), [dagster](/man/dagster)(1), [cron](/man/cron)(8)
129+
[luigi](/man/luigi)(1), [prefect](/man/prefect)(1), [dagster](/man/dagster)(1), [cron](/man/cron)(8), [docker](/man/docker)(1), [kubectl](/man/kubectl)(1)

assets/commands/airshare.md

Lines changed: 46 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,52 +4,76 @@ Share files between devices on the local network
44

55
# TLDR
66

7-
**Share** a file
7+
**Send** a file with a code
88

9-
```airshare send [file.txt]```
9+
```airshare [mycode] [file.txt]```
1010

11-
**Receive** files
11+
**Receive** files using a code
1212

13-
```airshare receive [code]```
13+
```airshare [mycode]```
1414

15-
Share multiple **files**
15+
**Send** multiple files
1616

17-
```airshare send [file1.txt] [file2.txt]```
17+
```airshare [mycode] [file1.txt] [file2.txt]```
1818

19-
Share a **directory**
19+
**Send text** content directly
2020

21-
```airshare send [directory/]```
21+
```airshare [mycode] -t "[Hello, World!]"```
22+
23+
**Host a receiving** (upload) server
24+
25+
```airshare [mycode] -u```
26+
27+
**Send clipboard** contents as text
28+
29+
```airshare [mycode] -cs```
30+
31+
**Specify a custom port**
32+
33+
```airshare [mycode] [file.txt] -p [9000]```
2234

2335
# SYNOPSIS
2436

25-
**airshare** _command_ [_options_] [_files_]
37+
**airshare** [_options_] _code_ [_files_]
2638

2739
# DESCRIPTION
2840

29-
**airshare** is a cross-platform file sharing tool that transfers files between devices on the same local network. It uses mDNS for device discovery and generates a simple code that recipients use to receive files.
41+
**airshare** is a Python-based cross-platform file sharing tool that transfers files between devices on the same local network. It uses mDNS for device discovery and identifies transfers with a simple code word. Recipients access shared content by using the same code.
3042

31-
The tool provides a simple alternative to complex file sharing setups, requiring no server configuration or account creation.
43+
The tool provides a simple alternative to complex file sharing setups, requiring no server configuration or account creation. Shared content can also be accessed via a web browser at `http://<code>.local:8000`.
3244

3345
# PARAMETERS
3446

35-
**send** _files_
36-
> Share files or directories
47+
_CODE_
48+
> An identifying code word for the sharing session.
49+
50+
_FILES_
51+
> File(s) or directories to send.
52+
53+
**-p**, **--port** _INTEGER_
54+
> Specify the port number for the server (default: 8000).
55+
56+
**-t**, **--text** _TEXT_
57+
> Send text content directly. Enclose multiple words in quotes.
58+
59+
**-u**, **--upload**
60+
> Host a receiving server to accept uploaded files.
3761
38-
**receive** _code_
39-
> Receive files using a share code
62+
**-cs**, **--clip-send**
63+
> Send clipboard contents as text.
4064
41-
**--no-zip**
42-
> Don't compress multiple files
65+
**-cr**, **--clip-receive**
66+
> Receive content and copy it to the clipboard.
4367
44-
**--port** _port_
45-
> Specify port number
68+
**-fp**, **--file-path**
69+
> Send files whose paths have been copied to the clipboard.
4670
47-
**--clipboard**
48-
> Copy code to clipboard
71+
**--version**
72+
> Display version information.
4973
5074
# CAVEATS
5175

52-
Both devices must be on the same local network. Large files may take time to transfer depending on network speed. No encryption by default on older versions.
76+
Both devices must be on the same local network. Large files are processed in chunks but may take time depending on network speed. The tool requires mDNS support on the network.
5377

5478
# HISTORY
5579

assets/commands/ali.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,22 @@ HTTP load testing tool with real-time TUI charts
1616

1717
```ali --method=POST --body-file=[path/to/payload.json] [http://host.xz]```
1818

19-
**Add custom headers**
19+
**Add custom headers** to the request
2020

2121
```ali -H "Authorization: Bearer [token]" [http://host.xz]```
2222

23-
**Export results** to a directory
23+
**Export results** to a directory for later analysis
2424

2525
```ali --export-to [path/to/results/] [http://host.xz]```
2626

27+
**Load test with TLS verification disabled**
28+
29+
```ali --insecure [https://host.xz]```
30+
31+
**Run at maximum speed** with no rate limit
32+
33+
```ali --rate=0 --duration=[30s] [http://host.xz]```
34+
2735
# SYNOPSIS
2836

2937
**ali** [_options_] _target_
@@ -88,4 +96,4 @@ The terminal UI requires a terminal that supports standard escape sequences. Run
8896

8997
# SEE ALSO
9098

91-
[ab](/man/ab)(1), [wrk](/man/wrk)(1), [curl](/man/curl)(1), [hey](/man/hey)(1)
99+
[ab](/man/ab)(1), [wrk](/man/wrk)(1), [curl](/man/curl)(1), [hey](/man/hey)(1), [siege](/man/siege)(1), [vegeta](/man/vegeta)(1), [k6](/man/k6)(1)

assets/commands/apptainer-run-help.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ Display embedded help text from a container.
44

55
# TLDR
66

7-
**Display the run-help** for a container
7+
**Display the run-help for a container**
88

99
```apptainer run-help [container.sif]```
1010

11+
**Show help for a specific app inside a container**
12+
13+
```apptainer run-help --app [appname] [container.sif]```
14+
1115
**Show help for a Docker Hub image**
1216

1317
```apptainer run-help docker://[image:tag]```
@@ -16,25 +20,24 @@ Display embedded help text from a container.
1620

1721
```apptainer run-help library://[user/collection/image:tag]```
1822

19-
**Get run-help for an OCI archive**
20-
21-
```apptainer run-help oci-archive://[path/to/archive.tar]```
22-
2323
# SYNOPSIS
2424

25-
**apptainer run-help** [_options_] _container_
25+
**apptainer run-help** [_options_] _image_path_
2626

2727
# PARAMETERS
2828

29-
_container_
29+
_image_path_
3030
> Path to a SIF file or URI to a container image (docker://, library://, oci-archive://).
3131
32-
**--help**, **-h**
32+
**--app** _string_
33+
> Show the help for a specific app defined in the container rather than the general container help. The help text comes from the app's **%apphelp** section.
34+
35+
**-h**, **--help**
3336
> Display help for the run-help command.
3437
3538
# DESCRIPTION
3639

37-
**apptainer run-help** displays help text embedded within an Apptainer/Singularity container. This help information is defined during container build time using the **%help** section in a definition file.
40+
**apptainer run-help** displays help text embedded within an Apptainer/Singularity container. This help information is defined during container build time using the **%help** section in a definition file. When the **--app** flag is used, it displays help from the specified app's **%apphelp** section instead.
3841

3942
Container authors use the %help section to document how to use their container, including expected arguments, required bind mounts, environment variables, and example commands. This provides users with container-specific usage information without needing external documentation.
4043

@@ -52,4 +55,4 @@ The run-help feature has been part of Singularity/Apptainer since early versions
5255

5356
# SEE ALSO
5457

55-
[apptainer](/man/apptainer)(1), [apptainer-run](/man/apptainer-run)(1), [apptainer-inspect](/man/apptainer-inspect)(1), [apptainer-build](/man/apptainer-build)(1)
58+
[apptainer](/man/apptainer)(1), [apptainer-run](/man/apptainer-run)(1), [apptainer-exec](/man/apptainer-exec)(1), [apptainer-inspect](/man/apptainer-inspect)(1), [apptainer-build](/man/apptainer-build)(1)

assets/commands/asciitoppm.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
# TAGLINE
22

3-
Convert ASCII art to PPM color image
3+
Convert ASCII text to PPM color image
44

55
# TLDR
66

7-
**Convert** ASCII to PPM image
7+
**Convert ASCII text file to a PPM image**
88

9-
```asciitoppm [width] [height] < [ascii.txt] > [output.ppm]```
9+
```asciitoppm < [ascii.txt] > [output.ppm]```
10+
11+
**Convert using a specific color definition file**
12+
13+
```asciitoppm -d [colorfile] < [ascii.txt] > [output.ppm]```
1014

1115
# SYNOPSIS
1216

13-
**asciitoppm** _width_ _height_
17+
**asciitoppm** [_options_] [_height_ _width_] < _input_ > _output_
1418

1519
# DESCRIPTION
1620

1721
**asciitoppm** converts ASCII text to a PPM (Portable Pixmap) color image. Each character in the input is mapped to a colored pixel, producing a visual representation of the text content.
1822

19-
Unlike **asciitopgm** which produces grayscale output, **asciitoppm** generates full-color images. The input is read from standard input and the output image dimensions must be specified. It is part of the Netpbm image processing toolkit.
23+
Unlike **asciitopgm** which produces grayscale output, **asciitoppm** generates full-color images. The input is read from standard input and written to standard output. It is part of the Netpbm image processing toolkit.
2024

2125
# PARAMETERS
2226

23-
**width**
24-
> Image width in pixels
25-
26-
**height**
27-
> Image height in pixels
27+
**-d** _colorfile_
28+
> Use the specified color definition file to map characters to colors.
2829
2930
# HISTORY
3031

3132
Part of the Netpbm toolkit for image processing.
3233

3334
# SEE ALSO
3435

35-
[asciitopgm](/man/asciitopgm)(1), [ppmtopgm](/man/ppmtopgm)(1)
36+
[asciitopgm](/man/asciitopgm)(1), [ppmtopgm](/man/ppmtopgm)(1), [pbmtoascii](/man/pbmtoascii)(1), [ppmtoascii](/man/ppmtoascii)(1)

0 commit comments

Comments
 (0)