x86

Total 32
Today 0
profile_image
몰라맨
26-03-27 10:08 0개 52회
문자열 검색 Powershell
윈도우 파워쉘

$paths = @(
"C:\Desk2026\",
"D:\GisaMan\",
"C:\Program Files\",
"C:\Windows\"
)

Get-ChildItem $paths -Recurse -Include *.ini,*.txt -File -ErrorAction SilentlyContinue |
Select-String "172.25.2." |
Select Path, LineNumber, Line

172.25.2 이 포함되어있는 파일 검색

댓글목록

등록된 댓글이 없습니다.