class Session::Sh

def get_status

def get_status
  @status = get_var '__exit_status__' 
  unless @status =~ /^\s*\d+\s*$/o
    raise ExecutionError, "could not determine exit status from <#{ @status.inspect }>"
  end
  @status = Integer @status
end