Useful Commands
sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4 ips.txt# awk
awk -F ':' '{print $1}' ports.txt
# cut
cut -d ':' -f 1 ports.txtparams=(-l -t -r -h)
ls "${params[@]}"
httpx_params=(
-follow-host-redirects
-title -web-server -tech-detect -location -status-code
-threads 50 -rl 150 -timeout 10 -retries 2
)
echo bytedance.com | httpx $httpx_params最后更新于