ks-tools/doc/ks-upf.md

95 lines
2.3 KiB
Markdown
Raw Normal View History

2021-03-07 18:29:39 +01:00
ks-upf - Upload common file(s) to server with rsync+ssh.
========================================================
2021-03-22 18:43:19 +01:00
### Syntax:
2021-03-07 18:29:39 +01:00
2021-04-18 00:21:59 +02:00
```shell
$ ks-upf -i - Start upload
$ ks-upf -r - Remove configuration
$ ks-upf -c - Show configuration
$ ks-upf -e - Edit configuration
$ ks-upf -v - Show version
$ ks-upf -h - Show help
```
2021-03-07 18:29:39 +01:00
### Initialize common file(s) upload:
* For initialize file(s) upload only un the following command:
2021-04-18 00:21:59 +02:00
```shell
$ ks-upf -i
````
2021-03-07 18:29:39 +01:00
* The first time you run the command, you will be asked for the necessary connection information:
2021-04-18 00:21:59 +02:00
```shell
* Enter the server user: anonymous
2022-01-03 19:34:53 +01:00
* Enter the server key: *******
2021-04-18 00:21:59 +02:00
* Enter the server URL: mypersonaldomain.es
* Enter the path on the server: /home/anonymous
* Enter the local path to scan: /home/local/videos
````
2021-03-07 18:29:39 +01:00
* Once the connection data has been entered, the local directory will be scanned to detect file(s) and upload them to the server directory.
### Remove configuration:
* If you want to clear the connection settings, you just need to run the following command:
2021-04-18 00:21:59 +02:00
```shell
$ ks-upf -r
````
2021-03-07 18:29:39 +01:00
### Show configuration:
* You can check the configuration with the following command:
2021-04-18 00:21:59 +02:00
```shell
$ ks-upf -c
````
2021-03-07 18:29:39 +01:00
* When consulting the configuration, we will see something like this:
2021-04-18 00:21:59 +02:00
```shell
* Server User: anonymous
2022-01-03 19:34:53 +01:00
* Server Password: *******
2021-04-18 00:21:59 +02:00
* URL (or IP) Server: mypersonaldomain.es
* Destination Path (Server): /home/anonymous
* Scan Path (Local): /home/local/videos
````
2021-03-07 18:29:39 +01:00
### Edit configuration:
* To edit any section of the configuration, the following command would be executed:
2021-04-18 00:21:59 +02:00
```shell
$ ks-upf -e
````
2021-03-07 18:29:39 +01:00
* After its execution, we will see a menu like the following one to be able to edit the desired section:
2021-04-18 00:21:59 +02:00
```shell
1 - Edit User (anonymous)
2022-01-03 19:34:53 +01:00
2 - Edit Password (*******)
2021-04-18 00:21:59 +02:00
3 - Edit Server (mypersonaldomain.es)
4 - Edit Dest. Path (/home/anonymous)
5 - Edit Local Path (/home/local/videos)
6 - Exit
* Choose an option:
````
2021-03-07 18:29:39 +01:00
### Show version:
2021-03-07 18:48:07 +01:00
* You can check the version with the command:
2021-04-18 00:21:59 +02:00
```shell
$ ks-upf -v
````
2021-03-07 18:42:36 +01:00
### Back to README.md
* [Go back](https://github.com/q3aql/ks-tools/blob/main/README.md)
2021-03-22 18:43:19 +01:00