Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Release v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Broizter committed Aug 9, 2020
1 parent b8355ef commit c76df15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

Script for backing up Bitwarden vault including attachments


## Summary

This script is a product of me trying to find a solution for backing up the Bitwarden vault including all attachments daily via cron. There's plenty of scripts/programs out there that backup Bitwarden, but very few that also handle attachments.
Expand All @@ -11,25 +10,24 @@ It currently does not handle versioning/encryption. Borg backup is an excellent

Pull requests are highly encouraged!


## Usage, Requirements

This script can be invoked manually, but it's designed to work without issues when called via cron aswell.

Download the latest release from GitHub for a stable and tested version.

Required dependencies:
* **bw** for accessing your Bitwarden vault. It's Bitwarden's official CLI utility that can be downloaded from https://github.com/bitwarden/cli
* **jq**, **grep**, **sed** and **awk** for utility output parsing. **jq** may need to be installed seperately. For Debian based distributions it can be installed with
* **jq** for utility output parsing. For Debian based distributions it can be installed with

$ apt install jq



## Configuration

1. Create the folder where you want your backups to end up.

2. Edit the values of the variables in the configuration section. Do not edit anything under "END OF CONFIGURATION" unless you know exactly what you're doing.


## License

This software is released under the terms of the MIT License, see file
Expand Down
1 change: 0 additions & 1 deletion bitwardenbackup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ BW_BINARY=/path/to/bitwarden-cli/bin

############ END OF CONFIGURATION ################


# Check if the output directory exists
if ! [ -d $OUTPUTFOLDER ]; then
echo "Output folder doesn't exist." 1>&2
Expand Down

0 comments on commit c76df15

Please sign in to comment.