2015-05-18 14:47:08 +00:00
|
|
|
boltbrowser
|
|
|
|
===========
|
|
|
|
|
2015-05-18 15:10:01 +00:00
|
|
|
A CLI Browser for BoltDB Files
|
|
|
|
|
2017-04-24 04:06:21 +00:00
|
|
|
![Image of About Screen](http://bullercodeworks.com/boltbrowser/ss2.png)
|
2015-05-18 15:10:01 +00:00
|
|
|
|
2017-04-24 04:06:21 +00:00
|
|
|
![Image of Main Browser](http://bullercodeworks.com/boltbrowser/ss1.png)
|
2016-12-29 21:38:51 +00:00
|
|
|
|
|
|
|
Installing
|
|
|
|
----------
|
|
|
|
|
|
|
|
Install in the standard way:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
go get github.com/br0xen/boltbrowser
|
|
|
|
```
|
|
|
|
|
|
|
|
Then you'll have `boltbrowser` in your path.
|
|
|
|
|
2017-08-30 14:10:43 +00:00
|
|
|
Pre-built Binaries
|
|
|
|
------------------
|
|
|
|
Here are pre-built binaries:
|
2019-10-17 16:56:24 +00:00
|
|
|
* [Linux 64-bit](https://git.bullercodeworks.com/brian/boltbrowser/releases/download/2.0/boltbrowser.linux64.zip)
|
|
|
|
* [Linux 32-bit](https://git.bullercodeworks.com/brian/boltbrowser/releases/download/2.0/boltbrowser.linux386.zip)
|
|
|
|
* [Linux Arm](https://git.bullercodeworks.com/brian/boltbrowser/releases/download/2.0/boltbrowser.linuxarm.zip)
|
|
|
|
* [Windows 64-bit](https://git.bullercodeworks.com/brian/boltbrowser/releases/download/2.0/boltbrowser.win64.exe.zip)
|
|
|
|
* [Windows 32-bit](https://git.bullercodeworks.com/brian/boltbrowser/releases/download/2.0/boltbrowser.win386.exe.zip)
|
|
|
|
* [Mac OS](https://git.bullercodeworks.com/brian/boltbrowser/releases/download/2.0/boltbrowser.darwin64.zip)
|
2017-08-30 14:10:43 +00:00
|
|
|
|
2016-12-29 21:38:51 +00:00
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
Just provide a BoltDB filename to be opened as the first argument on the command line:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
boltbrowser <filename>
|
|
|
|
```
|
2017-10-13 12:11:43 +00:00
|
|
|
|
|
|
|
To see all options that are available, run:
|
|
|
|
|
|
|
|
```
|
|
|
|
boltbrowser --help
|
|
|
|
```
|
2018-10-24 14:31:50 +00:00
|
|
|
|
|
|
|
Troubleshooting
|
|
|
|
---------------
|
|
|
|
|
|
|
|
If you're having trouble with garbled characters being displayed on your screen, you may try a different value for `TERM`.
|
|
|
|
People tend to have the best luck with `xterm-256color` or something like that. Play around with it and see if it fixes your problems.
|