06 2018 档案

摘要:一.背景 今天遇到windows下文件放置到ubuntu下后,使用vi打开文件,发现每一行结尾总是显示出^M,因此以下是批量转换成linux下格式的方法 二.批量转换成unix下的格式 find . -type f -exec dos2unix {} \ ; 三.批量转换成windows下的格式 f 阅读全文
posted @ 2018-06-25 14:10 Jello 阅读(851) 评论(0) 推荐(0) 编辑
摘要:一.背景 好久没有进行linux下的socket编程了,复习一下 二.服务端完整代码 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <sys/types.h> #inclu 阅读全文
posted @ 2018-06-21 12:44 Jello 阅读(203) 评论(0) 推荐(0) 编辑
摘要:1.install ncurses library (vi depend on ncurses library) ./configure --prefix=/usr --with-termlib make -j4 && make install 2.install vi ./configure -- 阅读全文
posted @ 2018-06-06 00:40 Jello 阅读(162) 评论(0) 推荐(0) 编辑