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 |
Tags
- 확장자
- 한글 깨짐
- mariadb
- ubuntu
- Selectbox
- replace
- 문자열자르기
- RabbitMQ
- php
- SVN
- i18n
- MySQL
- Python
- centos
- 천단위
- Eclipse
- docker
- install
- Oracle
- jQuery
- yum
- JavaScript
- 일괄변경
- TPL
- random
- Postfix
- smarty
- TextBox
- 부모창
Archives
- Today
- Total
wilson's story
PowerShell 에서 확장자 일괄 변경 본문
반응형
윈도우의 PowerShell 에서 파일의 확장자를 일괄로 변경하고자 할 때 사용
PowerShell에서 해당 폴더 위치로 이동
확장자 .AAA를 .BBB로 변경할 때
get-childItem *.AAA -Recurse | Rename-Item -NewName { $_.Name -replace ".AAA", '.BBB' }
반응형