C 关键字 - typedef

摘要: 转载地址:http://fouri.iteye.com/blog/483974如某个程序的开头有以下几条语句:#include "apue.h"#include <dirent.h>#include <limits.h>/* function type that is called for each filename */typedef int Myfunc(const char *, const struct stat *, int);static Myfunc myfunc;static int myftw(char *, Myfunc *);s 阅读全文
posted @ 2011-12-08 16:24 s7vens 阅读(324) 评论(0) 推荐(0)

Linux 命令 - cpio

摘要: . 阅读全文
posted @ 2011-12-08 14:29 s7vens 阅读(88) 评论(0) 推荐(0)

Linux 命令 - tar

摘要: . 阅读全文
posted @ 2011-12-08 14:27 s7vens 阅读(89) 评论(0) 推荐(0)

Linux 命令 - touch

摘要: 命令名称:touch 使用权限:所有使用者 使用方式: touch [-acfm] [-r reference-file] [--file=reference-file] [-t MMDDhhmm[[CC]YY][.ss]] [-d time] [--date=time] [--time={atime,access,use,mtime,modify}] [--no-create] [--help] [--version] file1 [file2 ...] 说明: touch 指令改变档案的时间记录。 ls -l 可以显示档案的时间记录。 参数: a 改变档案的读取时间记录。 m 改变档案的修 阅读全文
posted @ 2011-12-08 09:33 s7vens 阅读(148) 评论(0) 推荐(0)