-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
86 lines (49 loc) · 2.48 KB
/
README
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//#################################
1. To compile the server
(a) cd server
(b) make clean; make all
2. To compile the client
(a) cd client
(b) make clean; make all
//###################################
//###### User Manual ###############
1) get file : get a file (file name specified) from server current directory to client current directory.
:: USAGE ::
ftp> GET/get <filename>
-----------------------------------------------------------------------------------------------------------
2) put file : put a file (file name specified) to server current directory from client current directory.
:: USAGE ::
ftp> PUT/put <filename>
-------------------------------------------------------------------------------------------------------------
3) mget file : gets multiple files (file name specified) from server current directory to client current directory.
:: USAGE ::
ftp> MGET/mget <filename>,<filename>,<filename>,..
--------------------------------------------------------------------------------------------------------------
4) mput file : puts multiple files (file name specified) to server current directory from client current directory.
:: USAGE ::
ftp> mput/MPUT <filename>,<filename>,<filename>
-------------------------------------------------------------------------------------------------------------
5) cd dir : change server current directory.
:: USAGE ::
ftp> CD/cd <pathname>
-------------------------------------------------------------------------------------------------------------
6) lcd dir : change client local current directory.
:: USAGE ::
ftp> LCD/lcd <pathname>
-------------------------------------------------------------------------------------------------------------
7) mget * : mget with wildcard support.
:: USAGE ::
ftp> mget/MGET *
-------------------------------------------------------------------------------------------------------------
8) mput * : mput with wildcard support.
:: USAGE ::
ftp> mput/MPUT *
-------------------------------------------------------------------------------------------------------------
9) dir : Show the content of servers current directory.
:: USAGE ::
ftp> DIR/dir
-------------------------------------------------------------------------------------------------------------
10) ldir : Show the content of clients current directory.
:: USAGE ::
ftp> LDIR/ldir
-------------------------------------------------------------------------------------------------------------