#!/bin/bash # $HeadURL$ $LastChangedRevision$ echo "setting up environment ..." export PIN_DIR=$(pwd) echo "listing databases to create databases.conf ..." pin -l echo "listing (should be databases.conf only) ..." ls -C echo "invoking pin on non-existent database (expect an error message) ..." pin -P xxx || true echo "listing (should be databases.conf only) ..." ls -C echo "all done"