pathping

PATHPING traces route to an IP / Domain and shows the ping output for every hop to the destination. Very handy to troubleshoot the network delay involving multiple hops. TIP:…

0 Comments

Using WGET to download multiple links

wget -r -np -l 2 -A jpg,png,gif http://example.com/ Options meaning: -r, --recursive specify recursive download. -np, --no-parent don't ascend to the parent directory. -l, --level=NUMBER maximum recursion depth (inf or…

0 Comments