What is the windows equivalent of Linux command wc -l?
问题 I have a piece of code that is meant to send the following to the linux command line: wc -l C:/inputdirectory/P* However, I need to run this script in Windows, and am trying to find the equivalent command. I have tried find /c /v C:/inputdirectory/P* But this throws an error, that /v is not a valid command. Can you please tell me why this isn't working? *note, the command itself doesn't say "inputdirectory", it has the correct directory, it's just too tedious and private to type out 回答1: How