上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: aliases -- Aliases of other commandsbreakpoints -- Making program stop at certain pointsdata -- Examining datafiles -- Specifying and examining filesi... 阅读全文
posted @ 2014-05-10 17:17 anjsxz 阅读(212) 评论(0) 推荐(0) 编辑
摘要: /* Signals. */#define SIGHUP 1 /* Hangup (POSIX). */#define SIGINT 2 /* Interrupt (ANSI). */#define SIGQUIT 3 /* Quit (POSIX). */#define SIGILL ... 阅读全文
posted @ 2014-05-10 15:40 anjsxz 阅读(142) 评论(0) 推荐(0) 编辑
摘要: find . -type f -name "*.h" -o -name "*.cpp" | while read file; do new=$(echo $file | sed -e 's/[0-9-]//g') [ ! -f "$new" ] && mv "$file" "$new"d... 阅读全文
posted @ 2014-05-10 13:30 anjsxz 阅读(117) 评论(0) 推荐(0) 编辑
摘要: #工程里的文件夹SRCDIRS = file1 file2 file3 .#要生成的程序PROGRAMS=main#搜索每个文件夹里的cpp文件SRCS=$(foreach dir,$(SRCDIRS),$(wildcard $(dir)/*.cpp))#每个cpp文件所对应的.o文件OBJS=$(... 阅读全文
posted @ 2014-05-09 19:32 anjsxz 阅读(74) 评论(0) 推荐(0) 编辑
摘要: curl -fsSL https://raw.github.com/supermarin/Alcatraz/master/Scripts/install.sh | sh 阅读全文
posted @ 2014-05-09 14:37 anjsxz 阅读(75) 评论(0) 推荐(0) 编辑
摘要: /etc/sysconfig/network-scripts/ifcfg-eth0IPADDR=x.x.x.xGATEWAY=y.y.y.yNETMASK=x.x.x.xyum -y install openssh-server openssh-clientschkconfig sshd onser... 阅读全文
posted @ 2014-05-08 14:09 anjsxz 阅读(99) 评论(0) 推荐(0) 编辑
摘要: find . -xtype f -perm +111 -print0 | xargs -0 file | grep "ELF" 阅读全文
posted @ 2014-05-08 12:02 anjsxz 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 在高性能的网络程序中,使用得最为广泛的恐怕要数 “non-blocking IO + IO multiplexing”这种模型,即 Reactor 模式while (!done){int timeout_ms = max(1000, getNextTimedCallback());int retv... 阅读全文
posted @ 2014-05-07 20:19 anjsxz 阅读(214) 评论(0) 推荐(0) 编辑
摘要: pid_t fork(void);返回值: 若成功调用一次则返回两个值,子进程返回0,父进程返回子进程ID;否则,出错返回-1int socketpair(int d, int type, int protocol, int sv[2]);建立一对匿名的已经连接的套接字int ret = socke... 阅读全文
posted @ 2014-05-06 07:29 anjsxz 阅读(126) 评论(0) 推荐(0) 编辑
摘要: ~/Library/Application Support/Developer/Shared/Xcode/Plug-inshttps://github.com/macoscope/CodePilothttps://github.com/JugglerShu/XVimhttps://github.co... 阅读全文
posted @ 2014-05-05 19:03 anjsxz 阅读(113) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页