Command Line – How to Find User ID (UID) from Terminal

command lineuser-management

The title says it all. What command I need to run from a terminal to find my user ID (UID)?

Best Answer

There are a couple of ways:

  1. Using the id command you can get the real and effective user and group IDs.

    id -u <username>
    

    If no username is supplied to id, it will default to the current user.

  2. Using the enviroment variable.

    echo $UID
    
Related Question