mirror of
https://github.com/trimstray/the-book-of-secret-knowledge
synced 2024-11-22 03:03:04 +00:00
added shell cleaning trick
This commit is contained in:
parent
12da91205a
commit
1ea2c2f84a
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -116,6 +116,7 @@ Only main chapters:
|
|||
- **[Other Cheat Sheets](#other-cheat-sheets-toc)**
|
||||
- **[One-liners](#one-liners-toc)**
|
||||
- **[Shell functions](#shell-functions-toc)**
|
||||
- **[Shell tricks](#shell-tricks-toc)**
|
||||
|
||||
## :trident: The Book of Secret Knowledge (Chapters)
|
||||
|
||||
|
@ -4438,3 +4439,13 @@ shell> GetASN 1.1.1.1
|
|||
shell> GetASN 0.0.0.0
|
||||
Unsuccessful ASN gathering.
|
||||
```
|
||||
#### Shell tricks [<sup>[TOC]</sup>](#anger-table-of-contents)
|
||||
When you get a shell, it is generally not very clean, but after following these steps, you will have a fairly clean and comfortable shell to work with.
|
||||
|
||||
1) ```script /dev/null -c bash```
|
||||
2) Ctrl-Z (to send it to background)
|
||||
3) ```stty raw -echo; fg``` (returns the shell to foreground)
|
||||
4) ```reset``` (to reset terminal)
|
||||
5) ```xterm``` (when asked for terminal type)
|
||||
6) ```export TERM=xterm; export SHELL=bash```
|
||||
|
||||
|
|
Loading…
Reference in a new issue