Contenido principal

getUserName

R2026b

Get user name of target computer

Since R2022b

    Description

    userName = getUserName(tg) returns the user name of the target computer.

    example

    Examples

    collapse all

    Create a target object and add a target with name LinuxTarget1 containing user name user1 and password myPassword.

    tgs = linux.Targets();
    tg = tgs.addTarget("LinuxTarget1", "178.10.10.1", "user1", "myPassword");

    Get the user name of the target computer.

    userName = getUserName(tg);

    Input Arguments

    collapse all

    Target computer for the deployed application, specified as a linuxTarget object. The object provides access to methods that manipulate the target computer properties.

    Example: tg

    Output Arguments

    collapse all

    Returns the user name of the target computer.

    Version History

    Introduced in R2022b