Am Dienstag, 28. Mai 2013 schrieb David Linn: > Is there a way I can limit the number of links retrieved via wget -m ? > For example, just the first 100 links in a website.
Yes, having a *nix shell and grep/egrep around you can:
wget -m www.your-domain.org 2>&1|egrep -m 100 'saved|no newer than'
If you also want some output on the screen, see 'man tee'.
Regards, Tim
