#!/bin/bash # # Usage: # ./html.sh set -o nounset set -o pipefail set -o errexit proc basic-head { local title=$1 cat <<< """ $title

$title

""" } proc basic-tail { cat <<< """ """ } @ARGV