#想知道更多请查看第一版"linux c数据库备份第一版"
1 #include<sys/types.h> 2 #include<sys/wait.h> 3 #include<ctype.h> 4 #include<unistd.h> 5 #include<string.h> 6 #include<stdlib.h> 7 #include<stdio.h> 8 9 //待备份的数据表文件(一个数据库一行) 10 #define DB_FILE "./db_list" 11 //最多可以备份的数据库数量 12 #define NUM 20 13 //一个数据库名字的最长字符数 14 #define LEN 128 15 //保存从DB_FILE中读取到的数据库 16 char *db_list[NUM]; 17 //从DB_FILE文件中读取到的数据库数量 18 int read_num; 19 //请求内存函数 20 void malloc_dblist(); 21 //释放内存函数 22 void free_dblist(); 23 //读取数据库文件 24 void readDbFile(); 25 26 int main(int argc, char *argv[]) { 27 pid_t pid; 28 int i; 29 char buf[LEN]; 30 31 //从文件读取数据库信息 32 readDbFile(); 33 34 pid = fork(); 35 36 if (pid < 0) { 37 fprintf(stderr, "fork error "); 38 exit(1); 39 } 40 41 switch (pid) { 42 case -1: 43 fprintf(stderr, "fork failed "); 44 exit(1); 45 case 0: 46 //子进程进行数据库的备份 47 for (i = 0; i < read_num; i++) { 48 memset(buf, '