#!/bin/sh

lockfile=/tmp/mojo-jojo-pauses-for-next-tape
echo "hi there" > $lockfile
while [ -e "$lockfile" ] ; do
    sleep 1
done
exit 0
