CEWL
Usage:
Template:
cewl http://<ip>/<location> -d <depth #> | grep <regex> > <file>
EX: looking at the page http://10.0.5.21/bios/frodo
with a depth of 1
so only that page is looked at and grepping for anything with a capital letter
in it. Then outputting the the file frodo.small.txt
cewl http://10.0.5.21/bios/frodo -d 1 | grep '[A-Z]' > frodo.small.txt
Flags:
-d <#> | depth
Last updated