Created
December 12, 2017 14:06
-
-
Save staaldraad/640b22ac11f8f37872cdddf7c4bdf11f to your computer and use it in GitHub Desktop.
Get the uid, gid and user groups without touching /etc/passwd or running the `id` command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
awk -F: 'END {print "uid:"u" gid:"g" groups:"gg}{if($1=="Uid"){split($2,a," ");u=a[1]}if($1=="Gid"){split($2,a," ");g=a[1]}if($1=="Groups"){gg=$2}}' /proc/self/status |
Ditto. This is gold in a stripped down container or environment.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you so much, I really appreciate you sharing these scripts