#!/bin/sh version() { ./shellspec --version } files() { echo "[" files="$(find bin lib libexec \( -type f -o -type l \) -exec echo " \"{}\"," \; | sort)" echo "${files%,}" echo " ]" } cat<