31
31
<!-- commands -->
32
32
* [ ` ketool help [COMMAND] ` ] ( #ketool-help-command )
33
33
* [ ` ketool mkdir DIRECTORY ` ] ( #ketool-mkdir-directory )
34
+ * [ ` ketool put SOURCE ` ] ( #ketool-put-source )
34
35
* [ ` ketool rm OBJECT ` ] ( #ketool-rm-object )
35
36
* [ ` ketool rmdir DIRECTORY ` ] ( #ketool-rmdir-directory )
36
37
@@ -60,13 +61,14 @@ Create the directories, if they do not already exist.
60
61
61
62
```
62
63
USAGE
63
- $ ketool mkdir DIRECTORY... [-u <value>] [-t <value>] [-c <value>] [-p] [-v]
64
+ $ ketool mkdir DIRECTORY... [-u <value>] [-t <value>] [-k] [- c <value>] [-p] [-v]
64
65
65
66
ARGUMENTS
66
67
DIRECTORY... path of the directory to be created
67
68
68
69
FLAGS
69
70
-c, --cwd=<value> set current working directory to VALUE
71
+ -k, --insecure allow insecure SSL connection
70
72
-p, --parent no error if existing, make parent directories as needed
71
73
-t, --token=<value> API access token of the Kompira Enterprise server
72
74
-u, --baseurl=<value> base URL of the Kompira Enterprise server
@@ -81,20 +83,51 @@ EXAMPLES
81
83
82
84
_ See code: [ src/commands/mkdir.ts] ( https://github.com/fixpoint/ketool/blob/v0.0.0/src/commands/mkdir.ts ) _
83
85
86
+ ## ` ketool put SOURCE `
87
+
88
+ put files or directories to Kompira server
89
+
90
+ ```
91
+ USAGE
92
+ $ ketool put SOURCE... [-u <value>] [-t <value>] [-k] [-d <value>] [-c <value>] [-r] [-o] [-v]
93
+
94
+ ARGUMENTS
95
+ SOURCE... source file or directory
96
+
97
+ FLAGS
98
+ -c, --cwd=<value> set current working directory to VALUE
99
+ -d, --dest=<value> specify destination object or directory (create if none exists)
100
+ -k, --insecure allow insecure SSL connection
101
+ -o, --overwrite overwrite an existing object
102
+ -r, --recursive put directories recursively
103
+ -t, --token=<value> API access token of the Kompira Enterprise server
104
+ -u, --baseurl=<value> base URL of the Kompira Enterprise server
105
+ -v, --verbose explain what is being down
106
+
107
+ DESCRIPTION
108
+ put files or directories to Kompira server
109
+
110
+ EXAMPLES
111
+ $ ketool put
112
+ ```
113
+
114
+ _ See code: [ src/commands/put.ts] ( https://github.com/fixpoint/ketool/blob/v0.0.0/src/commands/put.ts ) _
115
+
84
116
## ` ketool rm OBJECT `
85
117
86
118
Remove the directories, if they are empty.
87
119
88
120
```
89
121
USAGE
90
- $ ketool rm OBJECT... [-u <value>] [-t <value>] [-c <value>] [-f] [-r] [-v]
122
+ $ ketool rm OBJECT... [-u <value>] [-t <value>] [-k] [- c <value>] [-f] [-r] [-v]
91
123
92
124
ARGUMENTS
93
125
OBJECT... path of the object to be removed
94
126
95
127
FLAGS
96
128
-c, --cwd=<value> set current working directory to VALUE
97
129
-f, --force ignore nonexistent objects and arguments
130
+ -k, --insecure allow insecure SSL connection
98
131
-r, --recurcive remove directories and their contents recursively
99
132
-t, --token=<value> API access token of the Kompira Enterprise server
100
133
-u, --baseurl=<value> base URL of the Kompira Enterprise server
@@ -115,13 +148,14 @@ Remove the directories, if they are empty.
115
148
116
149
```
117
150
USAGE
118
- $ ketool rmdir DIRECTORY... [-u <value>] [-t <value>] [-c <value>] [-p] [-v]
151
+ $ ketool rmdir DIRECTORY... [-u <value>] [-t <value>] [-k] [- c <value>] [-p] [-v]
119
152
120
153
ARGUMENTS
121
154
DIRECTORY... path of the directory to be removed
122
155
123
156
FLAGS
124
157
-c, --cwd=<value> set current working directory to VALUE
158
+ -k, --insecure allow insecure SSL connection
125
159
-p, --parent remove DIRECTORY and its ancestors
126
160
-t, --token=<value> API access token of the Kompira Enterprise server
127
161
-u, --baseurl=<value> base URL of the Kompira Enterprise server
0 commit comments