[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] wget bugs
From: |
Micah Cowan |
Subject: |
Re: [Bug-wget] wget bugs |
Date: |
Thu, 05 Apr 2012 18:48:04 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120302 Thunderbird/11.0 |
On 04/05/2012 04:30 AM, liaohuanghe wrote:
> Hi,
> When I wanna wget a single file which name is
> "[LAC][Gintama][250][x264_aac][ch_jp][480P_mkv].mkv", it failed . It give
> inforamtions lik "No matches on pattern
> `[LAC][Gintama][250][x264_aac][ch_jp][480P_mkv].mkv' ".
> Is this a bug, I can't find any useful information from Google or anywhere
> else.
> Please help me. thx.
Make sure that you quote the argument to wget. If you're using wget on a
Unix shell, use single quotes; if on Windows, use double-quotes.
If it's an FTP link, you may also need to specify --no-glob to wget.
Many shells, and wget itself for FTP when you're not using --no-glob,
interpret [ and ] to be the start and end of character groups, which
mean "match any single character from this set of characters".
-mjc