powershell command (cp, list, rename, find, count)
- 개요 Windows Power Shell에서 사용하는 기본 명령어에 대해 정리 했다. - 예시 txt로 끝나는 파일 리스트 Get-ChildItem *txt wav로 끝나는 파일 리스트를 walist라는 파일로 저장 Get-ChildItem -filter *wav > wavlist.txt txt로 끝나는 파일이름을 log로 끝나는 파일이름으로 변경 Get-ChildItem *txt | Rename-Item -NewName { $_.Name -Replace 'txt', 'wav'} json으로 끝나는 파일 갯수 count (Get-ChildItem -filter *json | Measure-Object).Count 현재 폴더의 파일 갯수 count (Get-ChildItem -Recurse -File ..
2020.11.06