#!/bin/sh
(
    echo 'subshell start'
    echo 'before dotcmd'
. "break_until"
echo 'after dotcmd, return value:' 0
    echo 'subshell end'
)
