github.com/artpar/rclone@v1.67.3/docs/content/commands/rclone_config_password.md (about) 1 --- 2 title: "rclone config password" 3 description: "Update password in an existing remote." 4 slug: rclone_config_password 5 url: /commands/rclone_config_password/ 6 versionIntroduced: v1.39 7 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/password/ and as part of making a release run "make commanddocs" 8 --- 9 # rclone config password 10 11 Update password in an existing remote. 12 13 ## Synopsis 14 15 16 Update an existing remote's password. The password 17 should be passed in pairs of `key` `password` or as `key=password`. 18 The `password` should be passed in in clear (unobscured). 19 20 For example, to set password of a remote of name myremote you would do: 21 22 rclone config password myremote fieldname mypassword 23 rclone config password myremote fieldname=mypassword 24 25 This command is obsolete now that "config update" and "config create" 26 both support obscuring passwords directly. 27 28 29 ``` 30 rclone config password name [key value]+ [flags] 31 ``` 32 33 ## Options 34 35 ``` 36 -h, --help help for password 37 ``` 38 39 40 See the [global flags page](/flags/) for global options not listed here. 41 42 # SEE ALSO 43 44 * [rclone config](/commands/rclone_config/) - Enter an interactive configuration session. 45