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
- grep
- Eclipse
- vscode
- 줄바꿈 문자
- find
- ssh
- web.xml
- context
- netsh
- Source
- profile
- maVen
- port
- lsof
- resource
- 네트워크
- tomcat
- bash
- xargs
- GIT
- Windows 10
- VirtualBox
- Quartz
- IntelliJ
- 단축키
- import
- Mac
- plugin
- JavaScript
- Windows
Archives
- Today
- Total
develog
[bash] convmv 로 여러 개 파일명 인코딩을 일괄 변경하기 본문
## -r : recursive
## . : 현재 디렉토리
convmv -f euc-kr -t utf-8 -r .
## 파일명 인코딩 일괄 변경 테스트
convmv -f euc-kr -t utf-8 -r .
## 파일명 인코딩 일괄 변경 (--notest 추가시 실제로 변환을 진행한다)
convmv -f euc-kr -t utf-8 -r --notest .
Comments