On Tue, Jan 5, 2010 at 3:53 PM, Susan Day suzieprogrammer@gmail.com wrote:
How do I get the IUD number for a user?
I believe you mean UID.
You can get that by typing:
id <user>
For me:
-bash-3.2# id ian uid=500(ian) gid=500(ian) groups=500(ian)
In this case, my UID would be 500.
Ian
On Tue, Jan 5, 2010 at 4:01 PM, Thomas Harold thomas-lists@nybeta.comwrote:
On 1/5/2010 3:53 PM, Susan Day wrote:
Hello; How do I get the IUD number for a user?
"id" command (see also the "groups" command)
$ id -u thomas 999
$ id -G thomas (prints a list of all group numbers that I belong to)
Thanks! Suzie