Skip to content

Commit c3c56f2

Browse files
committed
Improve content quality
1 parent cf4d9f8 commit c3c56f2

59 files changed

Lines changed: 333 additions & 190 deletions

Some content is hidden

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

assets/commands/2048.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Strategies that work early game may not scale - higher tiles need more careful p
5555

5656
# HISTORY
5757

58-
2048 was created by **Gabriele Cirulli** in **March 2014** as a weekend project. It became viral, spawning countless clones and variations. The concept builds on earlier games like Threes! and 1024.
58+
2048 was created by **Gabriele Cirulli** in **March 2014** as a weekend project. It became viral, spawning countless clones and variations. It is a clone of 1024 (itself a clone of Threes!), based on Saming's earlier 2048 implementation.
5959

6060
# SEE ALSO
6161

assets/commands/addgroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ When adding a user to a group, it modifies /etc/group to include the user as a m
4040
**--system**
4141
> Create a system group (GID from system range)
4242
43-
**--force-badname**
43+
**--allow-bad-names**
4444
> Allow group names that don't conform to naming conventions
4545
4646
**--conf** _file_

assets/commands/ag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The tool is optimized for speed, using multiple threads and memory-mapped I/O. I
4444
> Case insensitive search
4545
4646
**-s**, **--case-sensitive**
47-
> Case sensitive search (default)
47+
> Case sensitive search
4848
4949
**-v**, **--invert-match**
5050
> Invert the match

assets/commands/aichat.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Chat with AI models from the terminal
2222

2323
**Start interactive chat session**
2424

25-
```aichat -i```
25+
```aichat```
2626

2727
**Use a role/persona**
2828

@@ -47,18 +47,9 @@ Chat with AI models from the terminal
4747
**-e**, **--execute**
4848
> Execute mode: translate natural language to shell commands.
4949
50-
**-i**, **--interactive**
51-
> Start interactive chat REPL.
52-
5350
**--file** _FILE_
5451
> Include file in the conversation.
5552
56-
**-w**, **--wrap** _COLS_
57-
> Wrap output at column width.
58-
59-
**-H**, **--no-highlight**
60-
> Disable syntax highlighting.
61-
6253
**-S**, **--no-stream**
6354
> Disable streaming output.
6455
@@ -77,7 +68,7 @@ Chat with AI models from the terminal
7768

7869
In chat mode, it provides a REPL with conversation history, multi-line input, and syntax highlighting. Execute mode translates natural language descriptions into shell commands and optionally runs them. RAG mode indexes documents for question-answering over local files.
7970

80-
Roles define reusable personas and system prompts. Built-in roles include coder, shell, and translator. Custom roles are defined in the configuration file.
71+
Roles define reusable personas and system prompts. Built-in roles include %code%, %shell%, %explain-shell%, and %functions%. Custom roles are defined as individual files in the roles configuration directory.
8172

8273
The tool supports function calling, allowing AI models to invoke defined tools. Sessions persist conversations across invocations. Multiple providers and models can be configured simultaneously.
8374

@@ -88,8 +79,8 @@ Install via `cargo install aichat`, Homebrew, or download binaries.
8879
**~/.config/aichat/config.yaml**
8980
> Main configuration file for model settings, API keys, roles, and default parameters.
9081
91-
**~/.config/aichat/roles.yaml**
92-
> Custom role definitions with system prompts and parameters.
82+
**~/.config/aichat/roles/**
83+
> Directory of custom role definitions, each as an individual file.
9384
9485
# CAVEATS
9586

assets/commands/aider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ The tool integrates with git, can automatically commit changes, and understands
4040
> AI model to use (gpt-4, gpt-3.5-turbo, claude-3-opus, etc.)
4141
4242
**--architect**
43-
> Use architect mode for high-level planning
43+
> Use architect mode: an architect model proposes changes, then a separate editor model implements the file edits
4444
4545
**--edit-format** _format_
4646
> Edit format: diff, whole, diff-fenced
4747
4848
**--auto-commits**
49-
> Automatically commit AI changes
49+
> Automatically commit AI changes (enabled by default)
5050
5151
**--no-auto-commits**
5252
> Disable automatic commits

assets/commands/aircrack-ng.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,19 @@ The tool reads packet capture files containing wireless traffic, identifies encr
5555
> Quiet mode (no status display)
5656
5757
**-S**
58-
> Show real-time statistics
58+
> WPA cracking speed test (benchmark)
5959
6060
**-p** _threads_
6161
> Number of CPU threads to use
6262
6363
**-K**
64-
> Use Korek attack for WEP (faster)
64+
> Use KoreK attack instead of PTW for WEP cracking (PTW is the faster modern default)
6565
66-
**-x** / **-y**
67-
> Disable brute-force for last bytes (WEP)
66+
**-x**
67+
> Disable last keybyte brute-force (WEP). -x1 enables (default), -x2 brute-forces last two keybytes
68+
69+
**-y**
70+
> Experimental single brute-force attack, used when standard attacks fail with over 1 million IVs
6871
6972
# CAVEATS
7073

assets/commands/amixer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The tool provides both simple and full mixer interfaces. The simple interface (c
3737
# PARAMETERS
3838

3939
**-c card**
40-
> Select card number (format: hw:N)
40+
> Select card number (e.g., 0, 1, 2)
4141
4242
**-D device**
4343
> Select device name (default: 'default')

assets/commands/aplay.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ List available **audio devices**
6060
**-v, --verbose**
6161
> Verbose mode; show PCM structure and setup
6262
63+
**-i, --interactive**
64+
> Allow interactive operation via stdin (pause/resume with space or enter key)
65+
6366
# CONFIGURATION
6467

6568
**/etc/asound.conf**

assets/commands/atc.md

Lines changed: 33 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,63 @@ Text-based air traffic control simulation game
88

99
```atc```
1010

11-
Start with **specific airport**
11+
Start with a **specific game**
1212

1313
```atc -g [game]```
1414

15+
**List** available games
16+
17+
```atc -l```
18+
19+
Show **high scores**
20+
21+
```atc -s```
22+
1523
# SYNOPSIS
1624

17-
**atc** [_-g game_] [_-l level_]
25+
**atc** [_-u?lstp_] [_-gf game_] [_-r seed_]
1826

1927
# DESCRIPTION
2028

21-
**atc** is a classic text-based air traffic control simulation game from BSD games. Players guide aircraft to safe landings while avoiding collisions, managing multiple planes simultaneously.
29+
**atc** is a classic text-based air traffic control simulation game from the BSD games collection. Players guide jets and propeller planes to their destinations via exits and airports while avoiding collisions, managing multiple aircraft simultaneously.
2230

23-
The game uses single-key commands to control aircraft altitude, speed, and direction.
31+
Jets move every update tick while prop planes move every other tick. Planes enter the airspace at 7,000 feet and must leave via exits at 9,000 feet or land at airports. The game ends if two planes get too close. Score is based on the number of planes safely handled.
2432

2533
# PARAMETERS
2634

27-
**-g** _game_
28-
> Select specific airport/game
35+
**-g** _game_, **-f** _game_
36+
> Select a specific game/airport layout to play
37+
38+
**-l**
39+
> List available game files
40+
41+
**-s**, **-t**
42+
> Display high score rankings
43+
44+
**-r** _seed_
45+
> Set random seed for reproducible games
46+
47+
**-p**
48+
> Print the path to the game's private files directory
2949
30-
**-l** _level_
31-
> Starting difficulty level
50+
**-u**, **-?**
51+
> Display usage information
3252
3353
# CONTROLS
3454

3555
Commands are entered as sequences:
3656
- Letters select aircraft
37-
- Numbers control actions (altitude, speed, turns)
38-
- Airport/beacon letters for navigation
57+
- Numbers and letters control actions (altitude, turns, direction)
58+
- Airport/beacon letters for navigation targets
3959

4060
# CAVEATS
4161

42-
Requires terminal with character-based display. Steep learning curve. Game over if planes collide.
62+
Requires terminal with character-based display. Steep learning curve. Game over if planes collide or get too close. Part of the bsd-games package on most systems.
4363

4464
# HISTORY
4565

46-
**atc** was written by Ed James for BSD Unix and has been included in bsdgames collections since the **1980s**.
66+
**atc** was written by **Ed James** at UC Berkeley and has been included in BSD games collections since the **1980s**.
4767

4868
# SEE ALSO
4969

50-
[bsdgames](/man/bsdgames)(6), [nethack](/man/nethack)(6)
70+
[nethack-console](/man/nethack-console)(6), [adventure](/man/adventure)(6)

assets/commands/autopsy.md

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,45 @@ Web-based digital forensics analysis interface
1010

1111
Start on **specific port**
1212

13-
```autopsy -p [8080]```
13+
```autopsy -p [9999]```
1414

15-
**Open** in browser
15+
Restrict access to **specific host**
1616

17-
```autopsy -b```
17+
```autopsy [localhost]```
18+
19+
Specify **evidence locker** directory
20+
21+
```autopsy -d [path/to/locker]```
1822

1923
# SYNOPSIS
2024

21-
**autopsy** [_-p port_] [_-b_]
25+
**autopsy** [_-c_] [_-C_] [_-d evid_locker_] [_-i device filesystem mnt_] [_-p port_] [_addr_]
2226

2327
# DESCRIPTION
2428

25-
**autopsy** is a graphical interface for The Sleuth Kit forensic analysis tools. It provides a web-based browser interface for disk analysis, file recovery, and forensic investigation.
29+
**autopsy** is a graphical interface for The Sleuth Kit forensic analysis tools. It starts a local web server and provides a browser-based interface for disk analysis, file recovery, and forensic investigation.
2630

2731
The tool allows examiners to analyze file systems, recover deleted files, create timelines, and search for evidence without command-line knowledge.
2832

2933
# PARAMETERS
3034

3135
**-p** _port_
32-
> HTTP server port (default: random)
36+
> HTTP server port (default: 9999)
37+
38+
**-c**
39+
> Force cookie inclusion in URL (even for localhost)
40+
41+
**-C**
42+
> Force no cookie in URL
43+
44+
**-d** _dir_
45+
> Specify evidence locker directory (overrides default)
46+
47+
**-i** _device filesystem mnt_
48+
> Enable live analysis mode (specify device, filesystem type, and mount point)
3349
34-
**-b**
35-
> Open browser automatically
50+
_addr_
51+
> IP address or hostname restricting which client can connect
3652
3753
# FEATURES
3854

@@ -45,12 +61,12 @@ The tool allows examiners to analyze file systems, recover deleted files, create
4561

4662
# CAVEATS
4763

48-
For authorized forensic investigation only. Web interface requires browser. Legacy version; Autopsy 4 is a standalone Java application. The Sleuth Kit tools must be installed.
64+
For authorized forensic investigation only. Web interface requires browser. Legacy version (v2); Autopsy 4 is a standalone Java desktop application. The Sleuth Kit tools must be installed.
4965

5066
# HISTORY
5167

52-
**Autopsy** was created by Brian Carrier as a web-based front-end for The Sleuth Kit, first released around **2003**. Version 4 (2014) moved to a Java desktop application.
68+
**Autopsy** was created by **Brian Carrier** as a web-based front-end for The Sleuth Kit, first released in **2001**. Version 4 (2015) moved to a Java desktop application.
5369

5470
# SEE ALSO
5571

56-
[sleuthkit](/man/sleuthkit)(1), [foremost](/man/foremost)(1), [photorec](/man/photorec)(1)
72+
[sleuthkit](/man/sleuthkit)(1), [foremost](/man/foremost)(1), [bulk_extractor](/man/bulk_extractor)(1)

0 commit comments

Comments
 (0)