Rclone copy with backblaze-b2

Is there any way to upload files to the backblaze straight from the command line without having to put the key and account in the "rclone.conf" file?

There is an advanced mode to make remotes on the fly. They look like :backend:path/to/dir and then you use flags like --b2-account etc that are listed at the bottom of the B2 Page

See the docs for more

hello and welcome to the forum,

here is an example i use for ftp backend.

rclone lsf :ftp: --ftp-host=speedtest.tele2.net --ftp-user=anonymous --ftp-pass=`rclone obscure dummy`

and here is an example of a crypt

export RCLONE_CRYPT_THECRYPT_REMOTE=remote:crypt
export RCLONE_CRYPT_THECRYPT_FILENAME_ENCRYPTION='standard'
export RCLONE_CRYPT_THECRYPT_DIRECTORY_NAME_ENCRYPTION='true'
export RCLONE_CRYPT_THECRYPT_PASSWORD=`rclone obscure password`
export RCLONE_CRYPT_THECRYPT_PASSWORD2=`rclone obscure password2`

rclone lsd :crypt:THECRYPT

and here is an example of http

rclone lsd --http-url https://beta.rclone.org :http:

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.