[정보] 윈도우 텍스트를 리눅스용으로 변환하는 리눅스 유틸
페이지 정보
작성자 최고관리자 댓글 0건 조회 5,704회 작성일 20-02-06 15:32본문
dos2unix라는 유틸
help메시지
--------------------------------------------------------------------------------
$ dos2unix --help
dos2unix Copyright (c) 1994-1995 Benjamin Lin
Copyright (c) 1998 Bernd Johannes Wuebben (Version 3.0)
Copyright (c) 1998 Christian Wurll (Version 3.1)
Usage: dos2unix [-hkqV] [-c convmode] [-o file ...] [-n infile outfile ...]
-h --help give this help
-k --keepdate keep output file date
-q --quiet quiet mode, suppress all warnings
always on in stdin->stdout mode
-V --version display version number
-c --convmode conversion mode
convmode ASCII, 7bit, ISO, Mac, default to ASCII
-l --newline add additional newline in all but Mac convmode
-o --oldfile write to old file
file ... files to convert in old file mode
-n --newfile write to new file
infile original file in new file mode
outfile output file in new file mode
--------------------------------------------------------------------------------
사용법은 간단하다.
copyedfile.c라는 파일이 있으면
$dos2unix copyedfile.c
쉘에서 위와 같이 실행하면 copyedfile.c파일의 포맷이 유닉스용으로 변환된다.
아래는 cjsearch님의 블로그 내용이다.
dos2unix 를 이용해 서브 디렉터리의 모든 파일을 unix 파일 포멧 으로 바꾸는 방법.
1. windows 에서 사용 할 경우 GNU Tool 이 설치 되어 있어야 한다.
2. find . -type f -iname *.cpp -exec dos2unix.exe -k {} ; 를 실행 한다.
옵션중 -k 는 변경후 파일 날짜를 원본 날짜와 동일하게 유지 하기 위한 옵션임.
현재 directory 의 (서브 디렉터리 포함) *.cpp 파일을 unix format 으로 변경 한다.
[출처] dos2unix 서브 디렉터리의 파일 까지 바꾸는 방법|작성자 cjsearch
help메시지
--------------------------------------------------------------------------------
$ dos2unix --help
dos2unix Copyright (c) 1994-1995 Benjamin Lin
Copyright (c) 1998 Bernd Johannes Wuebben (Version 3.0)
Copyright (c) 1998 Christian Wurll (Version 3.1)
Usage: dos2unix [-hkqV] [-c convmode] [-o file ...] [-n infile outfile ...]
-h --help give this help
-k --keepdate keep output file date
-q --quiet quiet mode, suppress all warnings
always on in stdin->stdout mode
-V --version display version number
-c --convmode conversion mode
convmode ASCII, 7bit, ISO, Mac, default to ASCII
-l --newline add additional newline in all but Mac convmode
-o --oldfile write to old file
file ... files to convert in old file mode
-n --newfile write to new file
infile original file in new file mode
outfile output file in new file mode
--------------------------------------------------------------------------------
사용법은 간단하다.
copyedfile.c라는 파일이 있으면
$dos2unix copyedfile.c
쉘에서 위와 같이 실행하면 copyedfile.c파일의 포맷이 유닉스용으로 변환된다.
아래는 cjsearch님의 블로그 내용이다.
dos2unix 를 이용해 서브 디렉터리의 모든 파일을 unix 파일 포멧 으로 바꾸는 방법.
1. windows 에서 사용 할 경우 GNU Tool 이 설치 되어 있어야 한다.
2. find . -type f -iname *.cpp -exec dos2unix.exe -k {} ; 를 실행 한다.
옵션중 -k 는 변경후 파일 날짜를 원본 날짜와 동일하게 유지 하기 위한 옵션임.
현재 directory 의 (서브 디렉터리 포함) *.cpp 파일을 unix format 으로 변경 한다.
[출처] dos2unix 서브 디렉터리의 파일 까지 바꾸는 방법|작성자 cjsearch
댓글목록
등록된 댓글이 없습니다.