Adds htop picture + wget and oneliner information

This commit is contained in:
vl4dd 2021-04-08 03:41:49 -04:00
parent 14fb1525fb
commit 53ce282ff2
1 changed files with 18 additions and 1 deletions

View File

@ -308,6 +308,19 @@ $ realpath example.txt
/home/username/example.txt /home/username/example.txt
``` ```
## how to navigate in a web page source code
- Wget: The non-interactive network downloader
```
$ wget www.tandemlaw.be
```
- search url inside index.html
[Bashoneliners.com](bashoneliners.com)
```bash
$ cat index.html | grep -o "https.*" |cut -d "\"" -f1 |sort | uniq
```
## text editor ## text editor
- Nano: Nano's ANOther editor, an enhanced free Pico clone - Nano: Nano's ANOther editor, an enhanced free Pico clone
(simple text editor for noobies) (simple text editor for noobies)
@ -358,3 +371,7 @@ $ realpath example.txt
- dhclient > get ip - dhclient > get ip
- gnome networkmanager - gnome networkmanager
- wpa_supplicant > encryption @ wifi - wpa_supplicant > encryption @ wifi
# note : add HTOP picture (use f5)
![htop](./img/htop.png)