fiche
fiche copied to clipboard
Command line pastebin for sharing terminal output.
```bash #!/usr/bin/env bash files="$@" for f in $files; do echo "# $f"; cat "$f"; echo; done | nc termbin.com 9999 ``` This way, you can just: `termbin path/to/file1 path/to/file2 ...`....
https://github.com/solusipse/fiche/blob/4bba916e0f4a54d98a3947df7e2d0714d92a8bab/fiche.c#L661-L665 I first noticed this problem a few years ago when this code was introduced and it broke the pastebin plugin of my editor. I changed the plugin to strip...
Rewrite code to pass the length of the data and not use NULL termination. This allows binary files to be supported.
Add features from privatebin and dpaste such as: 1. Passwords to view the paste URL 2. Expiration times for pastes where pastes will be deleted after expiration 3. Edit a...
I've added Docker Support via docker-compose. You're welcome to merge :)
Hi, I have added support for ppc64le build on travis-ci in the branch . The travis-ci build log can be tracked on the link :https://travis-ci.com/github/sanjaymsh/fiche/builds/188793644 . I believe it is...
Just after entering first line it gives the link out. Shouldn't it wait for all to be typed and ctrl + d then only pipe to the termbin?
Currently I'm using [SmartOS](https://www.joyent.com/smartos) a derivative of [illumos](https://en.wikipedia.org/wiki/Illumos) to selfhost my home datacenter and fiche is running great on it,so here is what I did to make it work on...
This fixes a segfault on musl libc with reasonable sized buffers, as musl's default thread stack size is quite small (128k since 1.1.21). A similar bug exists on glibc with...
`fiche -B 262144` gives me Segmentation fault while receiving the first upload on Void Linux musl, it works fine on Void Linux glibc so this issue is probably musl only....