1#!/bin/bash -eu 2 3out="$(echo -n "Hello world" | "$1")" 4 5[[ "${out}" == "Compressed 11 to 50 bytes" ]] || (echo "Got ${out}" && exit 1) 6