# ~/.alias alias dos2unix "tr '\r\n' '\n'" alias unix2dos "tr '\n' '\r\n'"
다른분들은 어떻게하시고 계신가요?
ftp://ftp.kr.FreeBSD.org/pub/FreeBSD/distfiles/unix2dos-1.3.tar.gz
-- 익스펙토 페트로눔
vim 에서 하는데요..
도스2유닉스 :set ff=unix :w
유닉스2도스 :set ff=dos :w
학교다닐때 만든걸 아직도 쓰고 있습니다.
/* * dos2unix.c */ #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> int dos2unix(FILE *fromd); int main(int argc, char *argv[]) { FILE *fp; if (argc == 1) fp = stdin; else if (argc == 2) fp = fopen(argv[1], "r"); else exit(1); if (!fp) exit(1); dos2unix(fp); fclose(fp); return 0; } int dos2unix(FILE *fp) { int ch; while ((ch = fgetc(fp)) != EOF) { if (ch == '\r') continue; fputc(ch, stdout); } return 0; }
http://www.emacswiki.org/cgi-bin/wiki.pl?DosToUnix :oops:
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
ftp://ftp.kr.FreeBSD.org/pub/FreeBSD/dis
ftp://ftp.kr.FreeBSD.org/pub/FreeBSD/distfiles/unix2dos-1.3.tar.gz
--
익스펙토 페트로눔
vim 에서 하는데요..도스2유닉스:set ff=unix:
vim 에서 하는데요..
도스2유닉스
:set ff=unix
:w
유닉스2도스
:set ff=dos
:w
학교다닐때 만든걸 아직도 쓰고 있습니다.[code:1]/* *
학교다닐때 만든걸 아직도 쓰고 있습니다.
emacs
http://www.emacswiki.org/cgi-bin/wiki.pl?DosToUnix :oops:
댓글 달기