Go to file
leafus 7281b9b678
All checks were successful
Release Version / build (push) Successful in 5m25s
add new option "-v"
2024-09-29 13:40:49 +02:00
.gitea/workflows Update .gitea/workflows/build.yaml 2024-09-29 13:02:55 +02:00
.gitignore Add file deletion and ignore s3-client-dev 2024-09-29 04:58:53 +02:00
go.mod add new option "-v" 2024-09-29 13:40:49 +02:00
go.sum add new option "-v" 2024-09-29 13:40:49 +02:00
LICENSE init 2024-09-29 02:17:05 +02:00
main.go add new option "-v" 2024-09-29 13:40:49 +02:00
README.md Change README.md 2024-09-29 05:11:30 +02:00

S3 Client

This is a simple command-line tool to interact with an S3-compatible storage service. It allows you to upload, list files from an S3 bucket.

Prerequisites

  • Go (1.23.1 or later)

Installation

  1. Clone the repository:

    git clone https://git.fluffy.pw/leafus/s3-client
    
  2. Go to the project directory:

    cd s3-client
    
  3. Build the binary:

    go build -o s3-client
    

Configuration

Create a configuration file s3config.toml with the following content:

access_key_id = "your_access_key_id"
secret_access_key = "your_secret_access_key"
region = "your_region"
bucket = "your_bucket_name"
endpoint = "your_endpoint_url"

returnurl = "your_return_url"

Usage

Upload a file

./s3-client_linux.x86_64 -file "path/to/your/file" [optional] -directory "/exampledir"

List files

./s3-client_linux.x86_64 -list

Delete files

./s3-client_linux.x86_64 -delete "filename.png"

or with an directory

./s3-client_linux.x86_64 -delete "/dir1/filename.png"

Help message

./s3-client -help