mirror of
https://github.com/xalgord/My-Methodologies.git
synced 2024-11-21 19:23:08 +00:00
GITBOOK-111: change request with no subject merged in GitBook
This commit is contained in:
parent
e0a0174959
commit
090b6e12aa
1 changed files with 6 additions and 0 deletions
|
@ -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-
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue