Skip to content

Fiche

Command line pastebin for sharing terminal output.


Install fiche

git clone https://github.com/solusipse/fiche
cd fiche
make
make install
mkdir -p ~/logs/fiche

Launch fiche Server

fiche -S -d paste.example.com/ -o /var/www/html/files -p 9999 \
-l /var/log/fiche/fiche-$(date +%Y%m%d).log &

Send a paste to server

echo just testing! | nc server.com 9999

Example 2, read file and send to server

cat file.txt | nc server.com 9999