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
