kioclient: add page (#22491)

This commit is contained in:
ZAKKY
2026-05-26 10:41:09 +05:30
committed by GitHub
parent 1a2ddccf4e
commit e22193151b
+37
View File
@@ -0,0 +1,37 @@
# kioclient
> Perform network-transparent file operations using KDE's KIO subsystem.
> Supports URL schemes such as `file:`, `sftp:`, `smb:`, `fish:`, and `trash:`.
> More information: <https://manned.org/kioclient>.
- Open a URL with its default KDE handler:
`kioclient exec {{url}}`
- Print the contents of a remote file to `stdout`:
`kioclient cat {{sftp://user@host/path/to/file}}`
- List the contents of a remote directory:
`kioclient ls {{smb://server/share}}`
- Copy one or more files via KIO:
`kioclient cp {{path/to/source1 path/to/source2 ...}} {{path/to/destination}}`
- Move a file via KIO:
`kioclient mv {{path/to/source}} {{path/to/destination}}`
- Remove a file via KIO:
`kioclient rm {{url}}`
- Create a new directory via KIO:
`kioclient mkdir {{url}}`
- Display help:
`kioclient --help`