function ro() { mount -o remount,ro /; }
function rw() {
        mount -o remount,rw /
        test "$#" = 0 && return;
        "$@"
        rc=$?
        ro
        return $rc
}
