A bottom encoder and decoder implementation in pure Bash.
# Encode and decode in one pipeline.
echo "Hello, δΈη!" | ./bottom | ./bottom d
# Encode to file.
echo "Hello, world!" | ./bottom > /tmp/bottom_out
# Decode the file.
./bottom d < /tmp/bottom_out