Created
December 27, 2021 15:37
-
-
Save Sanix-Darker/20f11bb650f4d1b4c0544432815ee00d to your computer and use it in GitHub Desktop.
wgetcheckbrokenlinks.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget --spider \ | |
-r -nd -nv -H \ | |
-l 1 -w 2 \ | |
-o checker.log \ | |
https://yourhost.com | |
# And in another terminal | |
# in the same directory | |
tail -f checker.log | |
# disclaimer, this will only check GET requests... | |
# d4rk3r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment