HomeEasy Powershell: List Files (MCQ) December 02, 2020 0 Powershell: List Files (MCQ) Powershell: List Files (MCQ) Which of the following commands will list only "- [ ].txt" files in the current directory?gci | ? {$_.Name -match ".- [ ].txt"}gci | % {$_.Name -match ".- [ ].txt"}gci | ? {$_.name -match ".- [ ].txt"}gci | % {$_.name -matches ".- [ ].txt"}
Post a Comment