cel committed Update binariesLatest: cec6448 on 8/12/2020, 5:30:19 PM | |
📄 | .gitignore |
📄 | Makefile |
📄 | README.md |
📄 | jsmn.c |
📄 | jsmn.h |
📄 | sbotc.1 |
📄 | sbotc.c |
📄 | test-shs-client-inner.sh |
📄 | test-shs-server-inner.sh |
README.md
sbotc
A command-line SSB client in C. Use like the sbot
command (except for server
/start
).
Binaries
The following are binary builds of sbotc
, static-linked with libsodium.
Commit 337cc5970b1b8b4f2e9330078f2ca3c87dd71f42
:
- sbotc-linux-amd64
- sbotc-linux-musl-amd64
- sbotc-linux-armv7l
- sbotc-linux-powerpc
- sbotc-linux-musl-powerpc
Binaries listed below are built from not the latest commit, due to infrequent access to platforms. (If you can build for these, please open a PR.)
Commit d606935df44de13c3debe461ca11ed2a72085484
:
Thread: %pZpG7Bm...
Install from source
Install the dependency, sodium. On Debian: sudo apt-get install libsodium-dev
Compile and install the program:
make
sudo make install
Compile options
To build a binary statically linked with libsodium, use make STATIC=1
Usage
sbotc [-j] [-T] [-l] [-r] [-e]
[ -n | [-c <cap>] [-k <key>] [-K <keypair_seed>] ]
[ [-s <host>] [-p <port>] [ -4 | -6 ] | [-u <socket_path>] ]
[ -a | [-t <type>] <method> [<argument>...] ]
Arguments must be explicitly JSON-encoded.
For more information, see the manual page sbotc(1)
.
Built with git-ssb-web