#!/bin/sh
echo 'before case'
case 'a' in
    a)  echo 'before break'
break
echo 'after break, return value:' ${?};;
esac
echo 'after case'
