mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
17 lines
377 B
Markdown
17 lines
377 B
Markdown
---
|
|
description: The textual file is displayed in an interactive TUI showing only the parts that contain mispelled words.
|
|
functions:
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
aspell -c "$LFILE"
|
|
suid:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
./aspell -c "$LFILE"
|
|
sudo:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
sudo aspell -c "$LFILE"
|
|
---
|