摘要:
Vim替换----------------------------------------------------------substitute命令: :[range]s/from/to/[flags]from替换成to指定的字符串(from可为正则表达式,to可为空)range:范围,可以通过... 阅读全文
摘要:
Vim替换----------------------------------------------------------substitute命令: :[range]s/from/to/[flags]from替换成to指定的字符串(from可为正则表达式,to可为空)range:范围,可以通过... 阅读全文
摘要:
格式化全文: gg 到达文件最开始 = 要求缩进 G 直到文件尾 自动缩进当前行: ==格式化当前光标接下来的n行: n==格式化选定的行: v选中需要格式化的代码段 = 缩进选定的行: v选中需要格式化的代码段 >或< 右或左缩进 阅读全文
摘要:
Ubuntu14.04下:1. 安装cups 和cups-pdf,其中cups-pdf是虚拟打印的主要模块: sudo apt-get install cups-pdf2. cups-pdf 的 backend 要求 root 权限,所以设置一下权限: sudo chmod 4755 /usr/... 阅读全文
摘要:
*************************** list.txt : 目录 ********************************1. variable.sh2. condition.sh3. control.sh4. AndOr.sh5. statementBlock.sh6. ... 阅读全文
摘要:
#include #include #include //access() #include //创建多级目录 int createMultiLevelDir(char* sPathName) { char DirName[256]; int i, len; strcpy(Di... 阅读全文
摘要:
#include #include //strrchr(), strncpy()#include //realloc()#include //readlink()#define MAXBUFSIZE 1024//通过链接文件名获取被目标文件绝对路径//为了防止buffer不够大,包... 阅读全文
摘要:
#include #include int use_strtok(){ char str[] = "192.168.1.222"; char* token[4] = {}; token[0] = strtok(str, "."); //第一次调用strtok(), 第一个参数是要取词的字符串 ... 阅读全文
摘要:
#include #include #include //atoi(), 这里用不了itoa()函数(不属于标准)//字符串形式到整数形式int IP_str2int(const char *IP){ char* token = NULL; int intIP = 0; char strIP[16... 阅读全文
|