7 lines
234 B
Bash
7 lines
234 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
aws --profile garage --endpoint-url https://s3.systemsobscure.net s3 sync "$(pwd)/img/" s3://eolas/
|
||
|
|
||
|
## List current images in bucket:
|
||
|
# aws --profile garage --endpoint-url https://s3.systemsobscure.net s3 ls s3://eolas/
|