Let's say one is mid-fetch and decides he just wants to spend a few
more minutes online, but outgoing shows plenty pages left to fetch.
So we decide we want to turn off fetching any more images, and just
get the .html's etc.
(Yes, one could remove all .gifs etc. seen in outgoing, but more will
accrue each new .html one fetches.)
It seems the easiest thing to do at this point is put
*://*/*.gif *://*/*.jpg etc. in DontGet and do wwwoffle -config to
reread the config file.
I can't think of anyway to toggle fetching of images from the command
line, (or say with one click from the browser)... (other than having
two config files one moves back and forth to the official config file
spot (or perl -i line adder/subtracter), with simple wrapper
script... this must be the easiest way?)
perl -i toggle on guts:
if(/^#MY DontGet AUTO INSERT AREA END$/){
for my $i (qw{png jpg jpeg gif css}) { print $p, $i; print $p, uc $i }