Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Postfix
- JavaScript
- TPL
- 부모창
- ubuntu
- jQuery
- mariadb
- SVN
- TextBox
- 일괄변경
- centos
- php
- random
- docker
- 천단위
- 확장자
- MySQL
- Oracle
- i18n
- smarty
- Python
- Selectbox
- yum
- 문자열자르기
- replace
- RabbitMQ
- Eclipse
- install
- 한글 깨짐
Archives
- Today
- Total
wilson's story
PowerShell 에서 확장자 일괄 변경 본문
반응형
윈도우의 PowerShell 에서 파일의 확장자를 일괄로 변경하고자 할 때 사용
PowerShell에서 해당 폴더 위치로 이동
확장자 .AAA를 .BBB로 변경할 때
get-childItem *.AAA -Recurse | Rename-Item -NewName { $_.Name -replace ".AAA", '.BBB' }
반응형