Page 1 of 1

BRC not executing

PostPosted: Fri Aug 05, 2011 5:04 pm
by cwesterfield
I'm on windows 7 using the newest version of brc from the website.

my command is
Code: Select all
brc32.exe /nofiles /recursive /dir:"E:\Downloads\Ebooks" /IGNOREFOLDERX /pattern:"UNPACK" /REMOVEWORDS:"UNPACK" /EXECUTE


There are 3 folders with _Unpack_ in thier title but it isn't touching them. Example folder name:
Code: Select all
_UNPACK_Dexter Series


Here is a link to the output, with no changes to the three folders: http://pastebin.com/WvtYefT8

I'm not sure what I am doing wrong.

Re: BRC not executing

PostPosted: Thu Jan 19, 2012 5:25 pm
by audiogalaxy
cwesterfield wrote:I'm on windows 7 using the newest version of brc from the website.

my command is
Code: Select all
brc32.exe /nofiles /recursive /dir:"E:\Downloads\Ebooks" /IGNOREFOLDERX /pattern:"UNPACK" /REMOVEWORDS:"UNPACK" /EXECUTE


There are 3 folders with _Unpack_ in thier title but it isn't touching them. Example folder name:
Code: Select all
_UNPACK_Dexter Series


Here is a link to the output, with no changes to the three folders: http://pastebin.com/WvtYefT8

I'm not sure what I am doing wrong.


Where did you find such a "removewords" switch? :)
Try this:
Code: Select all
/nofiles /recursive /dir:"E:\Downloads\Ebooks" /IGNOREFOLDERX /replaceci:"UNPACK":"" /EXECUTE

/Pattern wildcards

PostPosted: Wed Aug 21, 2013 12:28 am
by truth
The problem is that /pattern:unpack should be /pattern:*unpack*
The asterisks match filenames with unpack anywhere in the filename (versus just unpack)