摘要: aliases -- Aliases of other commandsbreakpoints -- Making program stop at certain pointsdata -- Examining datafiles -- Specifying and examining filesi... 阅读全文
posted @ 2014-05-10 17:17 anjsxz 阅读(220) 评论(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 阅读(149) 评论(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 阅读(123) 评论(0) 推荐(0)