Skip to main content
Post Deleted by CommunityBot
Post Locked by CommunityBot
Post Migrated Away to superuser.com by Ryan M
Post Closed as "Not suitable for this site" by Ryan M
Source Link
Ralf_Reddings
  • 1.2k
  • 2
  • 11

How skip downloading 'robot.txt.tmp' files?

I sometimes want to only download media files from a single web page, such as gif files, which I figured out with:

wget -P c:\temp -A .gif -r -l 1 -H -nd 'https://marketplace.visualstudio.com/items?itemName=saviof.mayacode'

but this also downloads a bunch of robot.text.temp files:

F:\temp\robots.txt.tmp
F:\temp\robots.txt.tmp.1
F:\temp\robots.txt.tmp.2
F:\temp\robots.txt.tmp.3
F:\temp\robots.txt.tmp.4
F:\temp\autocomplete.gif
F:\temp\send_to_maya.gif
F:\temp\syntax_highlight.gif
F:\temp\variables.gif

Is it possible to skip these files and only get the gif files?

Any help would be greatly appreciated!