whoami è un comando Linux/Unix che stampa il nome utente associato all'ID utente effettivo corrente. È scritto da Richard Mlynarik e fa parte di GNU Coreutils.
Per la documentazione completa, eseguire:info coreutils 'whoami invocation'
Sintassi
whoami [OPTION]...
Opzioni
–help:- Print help –version:- Display version information
Il comando whoami è utile per i DBA/amministratori che lavorano su più istanze per conoscere il nome utente corrente a cui hanno effettuato l'accesso. Basta digitare il comando sul prompt della shell e ti dirà il nome utente corrente come mostrato di seguito.
$ whoami atech
È un comando esterno. La posizione dell'eseguibile è /usr/bin. Puoi trovarlo usando il comando type -a come mostrato di seguito.
$ type -a whoami whoami is /usr/bin/whoami
Controlla di seguito per ulteriori esempi
Basta inserire il comando senza alcuna opzione/parametro per visualizzare il nome utente per l'ID utente corrente come mostrato di seguito.
$ whoami atech
L'opzione –help mostra la guida su whoami e sull'uscita
$ whoami --help Usage: whoami [OPTION]... Print the user name associated with the current effective user ID. Same as id -un. --help display this help and exit --version output version information and exit Report whoami bugs to [email protected] GNU coreutils home page: <http://www.gnu.org/software/coreutils/> General help using GNU software: <http://www.gnu.org/gethelp/> For complete documentation, run: info coreutils 'whoami invocation'
–version visualizza le informazioni sulla versione ed esce
$ whoami --version whoami (GNU coreutils) 8.4 Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Richard Mlynarik.