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

后端 未结 12 2013
名媛妹妹
名媛妹妹 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:42

    An alternative to whoami is id -u -n.

    id -u will return the user id (e.g. 0 for root).

提交回复
热议问题