#!/usr/bin/env bash

cleanup() {
	echo cleanup function running
	exit 2
}

trap cleanup exit

echo script starting
echo ...
echo script done
exit 1
