forked from Deuxfleurs/garage
doc: cli.md: Added s5cmd example.
This commit is contained in:
parent
24e43f1aa0
commit
dc6be39833
1 changed files with 21 additions and 0 deletions
|
@ -12,6 +12,7 @@ These tools are particularly suitable for debug, backups, website deployments or
|
||||||
| [AWS CLI](#aws-cli) | ✅ | Recommended |
|
| [AWS CLI](#aws-cli) | ✅ | Recommended |
|
||||||
| [rclone](#rclone) | ✅ | |
|
| [rclone](#rclone) | ✅ | |
|
||||||
| [s3cmd](#s3cmd) | ✅ | |
|
| [s3cmd](#s3cmd) | ✅ | |
|
||||||
|
| [s5cmd](#s5cmd) | ✅ | |
|
||||||
| [(Cyber)duck](#cyberduck) | ✅ | |
|
| [(Cyber)duck](#cyberduck) | ✅ | |
|
||||||
| [WinSCP (libs3)](#winscp) | ✅ | CLI instructions only |
|
| [WinSCP (libs3)](#winscp) | ✅ | CLI instructions only |
|
||||||
| [sftpgo](#sftpgo) | ✅ | |
|
| [sftpgo](#sftpgo) | ✅ | |
|
||||||
|
@ -178,6 +179,26 @@ s3cmd put /tmp/hello.txt s3://my-bucket/
|
||||||
s3cmd get s3://my-bucket/hello.txt hello.txt
|
s3cmd get s3://my-bucket/hello.txt hello.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## `s5cmd`
|
||||||
|
|
||||||
|
Configure a credentials file as follows:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export AWS_ACCESS_KEY_ID=GK...
|
||||||
|
export AWS_SECRET_ACCESS_KEY=
|
||||||
|
export AWS_DEFAULT_REGION='garage'
|
||||||
|
export AWS_ENDPOINT='http://localhost:3900'
|
||||||
|
```
|
||||||
|
|
||||||
|
After adding these environment variables in your shell, `s5cmd` can be used
|
||||||
|
with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
s5cmd --endpoint-url=$AWS_ENDPOINT ls
|
||||||
|
```
|
||||||
|
|
||||||
|
See its usage output for other commands available.
|
||||||
|
|
||||||
## Cyberduck & duck {#cyberduck}
|
## Cyberduck & duck {#cyberduck}
|
||||||
|
|
||||||
Both Cyberduck (the GUI) and duck (the CLI) have a concept of "Connection Profiles" that contain some presets for a specific provider.
|
Both Cyberduck (the GUI) and duck (the CLI) have a concept of "Connection Profiles" that contain some presets for a specific provider.
|
||||||
|
|
Loading…
Reference in a new issue