find uid and gid of a file

revision 2ce709ecddccbfaa0160d7d77312b3a3b6469a27

raw

phork0.txt

#owner (user)
$ stat -c %U Makefile 
cweiske
$ stat -c %u Makefile 
1000

#group
$ stat -c %G Makefile 
cweiske
$ stat -c %g Makefile 
1000

History