#!/bin/sh set -e if [ -f gallery.cf ] ; then echo >&2 'gallery.cf already present, giving up!' exit 1 fi cat >gallery.cf <<'AMEN' use strict; use warnings; use utf8; my $gal = require '../../default.cf'; $gal->set( Title => 'Unnamed', ); return $gal; AMEN