Get list of images in web using shell script
is there a possibility to get all images, or better image list from web (i would type it as variable开发者_StackOverflow) using shell script?
Thanks
Have a look here. It fetches images from Google search given a keyword. Should be enough to get you started.
Use curl to get html source from web site, and parse it for tag, after that, download them all with wget or curl.
精彩评论