GITBOOK-111: change request with no subject merged in GitBook

This commit is contained in:
Xalgord 2024-08-20 16:22:41 +00:00 committed by gitbook-bot
parent e0a0174959
commit 090b6e12aa
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF

View file

@ -50,3 +50,9 @@ The best terminal-based subdomain scanner tools to find subdomains
```bash
awk -F[/.] 'NF > 5' subdomains.txt
```
### Sort unique domains based on their content length
```bash
cat cl.txt | awk '{print $NF, $0}' | sort -u -k1,1 | cut -d' ' -f2-
```