tuxpaint-pencil-sharpener/macos/template.sh

13 lines
198 B
Bash
Executable file

#!/bin/bash
#
# Process a document containing shell escape sequences.
#
# Usage: template.sh document.shdoc
#
bash <<<"cat <<__SHDOC_TEMPLATE__$$
$(cat "$@")
__SHDOC_TEMPLATE__$$"
# vim:ft=bash