And thank you for using my plugin.

Moderators: Hacker, petermad, Stefan2, white
The other one I am trying to add with:add >Refresh {`silent `put /dl vplist.lst }
but the file is created as file(1).txt, I guess the first param is just a dir, not including a file name and the filename gets ignored. Is there a way to give the file such an 'alias', so that the name is more meaningful than file(1).txtput /a \\\VP\dira\file-from-b.txt somepath\file.txt
Code: Select all
<export /f "C:\temp\520118088.scvp" "\" ">Log All"
Code: Select all
<export /f "C:\temp\520118088.scvp" "\" ">Log*All"
Code: Select all
<export /f "C:\temp\520118088.scvp" "\" {">Log All"}
Thanks a lot all is working ! I did not paid attention to the {} significationMVV wrote:nsp,
Well, unquoted space is a delimiter between multiple masks so >Log All is treated as two-item filter, and outer quotes of your filter are removed because of parameter parsing. You should enclose your filter into braces {} in order to keep quoting:Code: Select all
<export /f "C:\temp\520118088.scvp" "" {">Log All"}