https://github.com/funnyboy-roks/b2
B2 (name tbd) is a command-line tool for interacting with Backblaze's B2
https://github.com/funnyboy-roks/b2
backblaze backblaze-b2 cli cloud-storage
Last synced: 13 days ago
JSON representation
B2 (name tbd) is a command-line tool for interacting with Backblaze's B2
- Host: GitHub
- URL: https://github.com/funnyboy-roks/b2
- Owner: funnyboy-roks
- License: other
- Created: 2024-02-23T05:04:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-02T22:28:58.000Z (over 1 year ago)
- Last Synced: 2024-12-27T18:25:19.334Z (11 months ago)
- Topics: backblaze, backblaze-b2, cli, cloud-storage
- Language: Rust
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# b2
B2 (name tbd) is a command-line tool for interacting with Backblaze's
B2. It is similar to their B2 CLI tool written in Python, but it's
faster and more user-friendly (a.k.a. not just showing the JSON
responses from the api as the output)
## Usage
```sh
# All subcommands and arguments are visible with
b2 --help
# Authorise the user via stdin prompts
b2 authorise
# List the buckets that the user can see
b2 list-buckets
# List the files in the buckets
b2 ls
b2 ls -l
# Upload a file into b2
b2 [dest]
# Download a file from b2
b2
b2 -O
```