when using the command
rpm -ql package --dump | cut -d " " -f 1,5,6,7
the man page says --dump returns (for fields 1,5,6,7) path mode owner group
My output is
/blah/file 040750 username groupname
/blah/fileA 0120750 username groupname
/blah/fileC 0100640 username groupname
I understand the mode's last 3 digits. Normally, I would assume the
extra (left-most) digits would fall into
+1000 = sticky
+2000 = gid
+4000 = uid
But I can't get there with the 012 and 010 - it doesn't add up. It should only go to 070. what are these extra digits?
found more info - this field is permissions AND file type now looking for numeric file types. Anyone?