#!/bin/sh
(
    echo 'subshell start'
    echo 'before dotcmd'
. "continue_while"
echo 'after dotcmd, return value:' ${?}
    echo 'subshell end'
)
