mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-08-21 21:17:21 +00:00
8 lines
142 B
Bash
Executable File
8 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# print every url in every file in deb-url-history directory
|
|
for f in $(ls deb-url-history/)
|
|
do
|
|
zcat "deb-url-history/$f"
|
|
done
|