# Bitwarden
- [Bitwarden official website](https://bitwarden.com/)
## Send
Most operations with Bitwarden vault need to be done authenticated. To get the session token, we need to do:
```bash
bw login
# Remember to delete for bash/zsh history
export BW_SESSION="XYZ"
```
### Upload file securely to Bitwarden
```bash
bw send -n Secretfile-App1 -f <(cat secretfile.txt)
```
### List the items
```bash
bw list items
```
### Get the password
```bash
bw get password router1.camabeh.com
```