fix(docs): Condensed multi-line download commands into a single line

This should facilitate copy-pasting the download commands into terminals that don't support line-jumps via backslashes, such as Powershell 7
This commit is contained in:
ItsIgnacioPortal 2025-02-17 23:35:29 -03:00
parent 45a2480206
commit 026a367e37

View file

@ -24,16 +24,13 @@ This project is maintained by [Daniel Miessler](https://danielmiessler.com/), [J
**Zip**
```
wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList.zip \
&& unzip SecList.zip \
&& rm -f SecList.zip
wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList.zip && unzip SecList.zip && rm -f SecList.zip
```
**Git: No commit history (faster)**
```
git clone --depth 1 \
https://github.com/danielmiessler/SecLists.git
git clone --depth 1 https://github.com/danielmiessler/SecLists.git
```
**Git: Complete**