pterm 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -191,6 +191,43 @@ pinokio filepicker --filetype='images/*.png,*.jpg,*.jpeg'
|
|
|
191
191
|
pinokio filepicker --filetype='images/*.png,*.jpg,*.jpeg' --filetype='docs/*.pdf'
|
|
192
192
|
```
|
|
193
193
|
|
|
194
|
+
## clipboard
|
|
195
|
+
|
|
196
|
+
write to or read from clipboard
|
|
197
|
+
|
|
198
|
+
### syntax
|
|
199
|
+
|
|
200
|
+
```
|
|
201
|
+
pinokio clipboard copy <text>
|
|
202
|
+
pinokio clipboard paste
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### examples
|
|
207
|
+
|
|
208
|
+
#### copy text to clipboard
|
|
209
|
+
|
|
210
|
+
The following command copies "hello world" to the clipboard
|
|
211
|
+
|
|
212
|
+
```
|
|
213
|
+
pinokio clipboard copy "hello world"
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
#### read from clipboard
|
|
217
|
+
|
|
218
|
+
Assuming the clipboard contains the text 'hello world',
|
|
219
|
+
|
|
220
|
+
```
|
|
221
|
+
pinokio clipboard paste
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
will print:
|
|
225
|
+
|
|
226
|
+
```
|
|
227
|
+
hello world
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
You can pipe this to other terminal commands to easily access the clipboard content.
|
|
194
231
|
|
|
195
232
|
## push
|
|
196
233
|
|