<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to download the multiple files using wget in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6679807#M54669</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is there any way we can download multiple files using wget for e.g. when i try to download&lt;EM&gt; wget &lt;A target="_blank" href="http://url/test"&gt;http://url/test&lt;/A&gt;*&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Warning: wildcards not supported in HTTP.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically we want to download the files starting with &lt;STRONG&gt;test-nnnnn (where nnnnn&amp;nbsp; - can we any numbers) or *.XLS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Dec 2014 11:32:07 GMT</pubDate>
    <dc:creator>Narendra Uttekar</dc:creator>
    <dc:date>2014-12-01T11:32:07Z</dc:date>
    <item>
      <title>How to download the multiple files using wget</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6679807#M54669</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is there any way we can download multiple files using wget for e.g. when i try to download&lt;EM&gt; wget &lt;A target="_blank" href="http://url/test"&gt;http://url/test&lt;/A&gt;*&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Warning: wildcards not supported in HTTP.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically we want to download the files starting with &lt;STRONG&gt;test-nnnnn (where nnnnn&amp;nbsp; - can we any numbers) or *.XLS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2014 11:32:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6679807#M54669</guid>
      <dc:creator>Narendra Uttekar</dc:creator>
      <dc:date>2014-12-01T11:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to download the multiple files using wget</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6679836#M54670</link>
      <description>&lt;P&gt;&amp;gt; Is there any way we can download multiple files using wget [...]&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; It depends.&amp;nbsp; If you could use FTP instead of HTTP, then wildcards&lt;BR /&gt;could be used.&amp;nbsp; If the Web server will return a list of files for a URL&lt;BR /&gt;like "http://url/", then you could do things with HTTP, too.&amp;nbsp; A Wget&lt;BR /&gt;option like --accept-regex=REGEX could be useful, for example.&amp;nbsp; Or, you&lt;BR /&gt;could first fetch the file list, then extract the names you want from&lt;BR /&gt;it, and finally use Wget to fetch the URLs which will get those named&lt;BR /&gt;files.&amp;nbsp; (-i/--input-file=FILE could be useful here.)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; An FTP server naturally provides directory listings.&amp;nbsp; This allows&lt;BR /&gt;Wget to get a directory listing, scan it for wildcard matches, and fetch&lt;BR /&gt;the resulting files.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; An HTTP server may or may not provide a directory listing, depending&lt;BR /&gt;on how the server is configured.&amp;nbsp; Generally, with HTML, Wget can follow&lt;BR /&gt;HTML _links_, but that works only if the server provides a HTML document&lt;BR /&gt;which contains suitable links.&amp;nbsp; Between my weak psychic powers and your&lt;BR /&gt;description, I don't how helpful your HTTP/FTP/whatever server will be.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2014 12:50:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6679836#M54670</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2014-12-01T12:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to download the multiple files using wget</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6682383#M54671</link>
      <description>&lt;P&gt;If you have the right filenames (or they can be generated),&lt;/P&gt;&lt;P&gt;you could use a bash script which could download it for you.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2014 14:18:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-download-the-multiple-files-using-wget/m-p/6682383#M54671</guid>
      <dc:creator>drayson</dc:creator>
      <dc:date>2014-12-08T14:18:25Z</dc:date>
    </item>
  </channel>
</rss>

