"FIND: Parameter format not correct" and "FINDSTR: Write error" with Pipes

61,506

Solution 1

Use quotation marks on parameter of find /c "foo".

Solution 2

I was able to directly do what I needed to do with this syntax:

find.exe """Find This""" *.log

With the TRIPLE double quotes, I think 2 of them get consumed by POSH, leaving the single quote for FIND to see.. This worked fine for me on a Server 2012 R2..

Solution 3

This also works:

find `"keyword`"

Solution 4

The "string" parameter is compulsory in find. Try piping findstr to:

find /c /v ""
Share:
61,506

Related videos on Youtube

jww
Author by

jww

Updated on September 18, 2022

Comments

  • jww
    jww over 1 year

    I'm trying to write a Windows cmd.exe script to count the occurrences of aes after compiling a program from the command line. Its simply an Audit/QA script to ensure we're getting what we expect.

    When I use findstr without the pipe, it appears to work fine:

    cryptopp-5.6.3>dumpbin /disasm Win32/cryptlib/Debug/rijndael.obj | findstr aes
      000000C1: 66 0F 3A DF C0 00  aeskeygenassist xmm0,xmm0,0
      00000206: 66 0F 3A DF C0 00  aeskeygenassist xmm0,xmm0,0
      00000345: 66 0F 38 DB 04 81  aesimc      xmm0,xmmword ptr [ecx+eax*4]
      00000366: 66 0F 38 DB 04 81  aesimc      xmm0,xmmword ptr [ecx+eax*4]
      0000039F: 66 0F 38 DB 04 81  aesimc      xmm0,xmmword ptr [ecx+eax*4]
      00000078: 66 0F 38 DC C8     aesenc      xmm1,xmm0
      000000AB: 66 0F 38 DC C8     aesenc      xmm1,xmm0
      ...
    

    As soon as I pipe the result to find /c to count occurrences, things blow up. Not only does find not work as expected, it manages to break the proceeding findstr command.

    cryptopp-5.6.3>dumpbin /disasm Win32/cryptlib/Debug/rijndael.obj | findstr aes | find /c aes
    FIND: Parameter format not correct
    FINDSTR: Write error
    

    According to find /?:

    If a path is not specified, FIND searches the text typed at the prompt
    or piped from another command.
    

    How do I pipe the output of findstr to the input of find?

  • G-Man Says 'Reinstate Monica'
    G-Man Says 'Reinstate Monica' over 6 years
    The question has been satisfactorily answered by adding a " before the search string and another at the end.  If that doesn’t work for you, that suggests that you have a different situation.  The fact that you’re talking about “POSH”, which is not mentioned in the question, supports that. If you believe that your problem (whatever it is) applies to other people, you should ask a new question, describe your situation, and post your own answer.  (You may be subjected to a brief delay before the system will let you answer your own question.)
  • Amadeusz Wieczorek
    Amadeusz Wieczorek over 6 years
    this answer is correct. I'm using power shell in ConEmu and need to use triple quotes. Please revert your downvote.
  • Nat Bowman
    Nat Bowman almost 6 years
    Seconding that this works/is needed using vanilla powershell on Win 10, where I was having the same problem.
  • Ben
    Ben over 5 years
    I assume "POSH" means Powershell. I've never seen that term before. Confirmed this works for me though. So stupid that this is needed!
  • Doug Maurer
    Doug Maurer over 3 years
    And again today. I know exactly how to use find, been doing so for years. But in powershell I could only get to work with triple quotes as this answer suggested.