doctordeploylogo
  [ Prev ] [ Next ] | [ Home ] [ Sitemap ] .. -... .. -.- .-. .- ... ...

GREP in Powershell

04/2016

Powershell Pendant zu Linux'schem GREP:

# check xml files for string "8080"
ls -r *.xml | % { write $_.fullname; gc $_ | sls "8080" } | out-host -paging