Afficher l'UID d'un utilisateur
Pour afficher l'UID d'un utilisateur, saisir la commande suivante dans une console :
$ echo `grep root /etc/passwd | cut -d: -f3`
0
$
La commande grep root /etc/passwd affiche la ligne du fichier /etc/passwd contenant l'expression root
$ grep root /etc/passwd
root:x:0:0:root:/root:/bin/bash
$