我有一个包含以下内容的文件-
serial_no= 1 name="abc.txt" type="Text" date="25-06-18"
serial_no= 2 name="abc.bmp" type="Bitmap" date="23-06-18"
serial_no= 3 name="abc.jpg" type="Image" date="21-06-18"
serial_no= 4 name="abc2.txt" type="Text" date="26-06-18"
serial_no= 5 name="abc.log" type="LogFile" date="19-06-18"
serial_no= 6 name="abc.exe" type="Program" date="20-06-18"
serial_no= 7 name="abc.jar" type="Java Archive" date="25-06-18"
serial_no= 8 name="abc3.txt" type="Text" date="11-06-18"
我要搜索 type =“ Text”
我尝试对-pattern选项使用具有很多值的Select-String,但始终会出错-
命令-
Select-String -path "path\filename.log" -pattern "type="Text""
错误-
Select-String : A positional parameter cannot be found that accepts argument 'Text'.
At line:1 char:1
+ Select-String -path "...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Select-String], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.SelectStringCommand
有人可以告诉我如何修改命令以搜索具有双引号的字符串吗?
答案 0 :(得分:1)
您可以使用'
而不是外面的"
来查找字符串:
Select-String -path "path\filename.log" -pattern 'type="Text"'
为您提供正确的输出(例如):
filename.log:1:serial_no= 1 name="abc.txt" type="Text" date="25-06-18"
filename.log:4:serial_no= 4 name="abc2.txt" type="Text" date="26-06-18"
filename.log:8:serial_no= 8 name="abc3.txt" type="Text" date="11-06-18"