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 |
Tags
- Windows 10
- Mac
- lsof
- bash
- vscode
- netsh
- profile
- plugin
- IntelliJ
- web.xml
- Windows
- 단축키
- GIT
- find
- ssh
- Quartz
- import
- grep
- xargs
- 줄바꿈 문자
- VirtualBox
- port
- context
- Eclipse
- 네트워크
- resource
- tomcat
- JavaScript
- maVen
- Source
Archives
- Today
- Total
목록2024/04/02 (3)
develog
[bash] 파일명이 깨진 파일 삭제하기
$ ls -l -rw-r--r--. 1 root root 417 Jan 23 14:23 �װ��.xls ## -i 로 노드 번호를 확인한다 $ ls -li 34045205 -rw-r--r--. 1 root root 417 Jan 23 14:23 �װ��.xls ## find 로 노드 번호를 찾은 후 삭제한다 $ find . -inum 34045205 | xargs rm
카테고리 없음
2024. 4. 2. 15:42
[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 .
카테고리 없음
2024. 4. 2. 15:15