update locations

This commit is contained in:
ghost 2023-11-16 13:28:43 +02:00
parent 3327210cd0
commit 8b545b65e3
3 changed files with 5 additions and 5 deletions

View File

@ -11,10 +11,10 @@ CLI util to operate with large objects in small blocks size
export FS object to blockchain namespace
```
php driver/put.php processor filename [length]
php kevacoin/put.php processor filename [length]
```
* `processor` - path to kevacoin-cli
* `processor` - path to `kevacoin-cli`
* `filename` - file path to store in blockchain
* `length` - optional split size, 3072 bytes [max](https://kevacoin.org/faq.html)
@ -23,9 +23,9 @@ php driver/put.php processor filename [length]
import namespace to FS location
```
php driver/get.php processor namespace [destination]
php kevacoin/get.php processor namespace [destination]
```
* `processor` - path to kevacoin-cli
* `processor` - path to `kevacoin-cli`
* `namespace` - hash received from the `put` command
* `destination` - optional file system location, `data/import` by default

View File

@ -68,7 +68,7 @@ ksort($data);
// Save merged data to destination
$filename = isset($argv[3]) ? $argv[3] : sprintf(
'%s/../../data/import/kevacoin.%s.%s',
'%s/../data/import/kevacoin.%s.%s',
__DIR__,
$argv[2],
$names[array_key_first($names)]