Find a string in number of files
To find out a string in a file from a directory (which has many files), this command should be helpful..
findstr -spin "String" *.*
Here we are finding string in subdirectories, ignoring case, and in all the files(anyname.anyextension)
findstr -spin "String" *.*
Here we are finding string in subdirectories, ignoring case, and in all the files(anyname.anyextension)
Comments
Post a Comment