-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcat.c
More file actions
44 lines (36 loc) · 934 Bytes
/
Copy pathcat.c
File metadata and controls
44 lines (36 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "common.h"
extern BuiltinCmd blt[MAX_BUILTIN_FUNC_NUM];
int cat(int * retc, char ** retv, const int argc, const char ** argv) {
if(retc)
*retc = 0;
if(argc == 0)
return 1;
/*int cmdIdx = findBuiltinCmd(argv[0]);
if(cmdIdx < 0) {
printf("command: %s, non-builtin command\n", argv[0]);
return 0;
}
printf("command: %s, builtin command\n %s\n", argv[0], blt[cmdIdx].desc);
/** Add your man function here */
//printf("into\n");
FILE *fp;
char ch;
fp=fopen(argv[0],"r+");
while((ch=fgetc(fp))!=EOF){
putchar(ch);
//printf("hello\n");
}
fclose(fp);
return 0;
}
int catAddBuiltin(){
BuiltinCmd x;
strcpy(x.name, "cat");
strcpy(x.desc, "print content of file");
x.hasAction = false;
x.func = &cat;
x.optNum = 0;
memset(x.opt, 0, sizeof(x.opt));
addBuiltinCmd(&x);
return 0;
}