How can I get the current user's username in Bash?

后端 未结 12 1785
名媛妹妹
名媛妹妹 2021-01-29 18:04

I am writing a program in Bash that needs to get the user\'s username.

I have heard of a thing called whoami, but I have no idea what it does or how to use it.

W

12条回答
  •  长发绾君心
    2021-01-29 18:44

    On the command line, enter

    whoami
    

    or

    echo "$USER"
    

    To save these values to a variable, do

    myvariable=$(whoami)
    

    or

    myvariable=$USER
    

    Of course, you don't need to make a variable since that is what the $USER variable is for.

提交回复
热议问题