test/header.sh @ 1f78b4426ade

Add `:homepage` to `defsystem`
author Steve Losh <steve@stevelosh.com>
date Mon, 15 Jan 2018 15:50:14 -0500
parents 8597527d94a5
children (none)
#!/usr/bin/env bash

set -e

which figlet >/dev/null && FIG="figlet -kf $1" || FIG="echo"
which lolcat >/dev/null && LOL="lolcat --freq=0.25" || LOL="cat"

shift

echo

$FIG "$@" | sed -Ee 's/ +$$//' | tr -s '\n' | $LOL

echo