-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtouch.c
More file actions
38 lines (30 loc) · 825 Bytes
/
Copy pathtouch.c
File metadata and controls
38 lines (30 loc) · 825 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
#include "common.h"
extern BuiltinCmd blt[MAX_BUILTIN_FUNC_NUM];
int touch(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 */
FILE *fp;
fp=fopen(argv[0],"a");
fclose(fp);
return 0;
}
int touchAddBuiltin(){
BuiltinCmd x;
strcpy(x.name, "touch");
strcpy(x.desc, "Update the timestamp of the file");
x.hasAction = false;
x.func = &touch;
x.optNum = 0;
memset(x.opt, 0, sizeof(x.opt));
addBuiltinCmd(&x);
return 0;
}