Terminal command to get the full name of a Mac user

Munki-Enroll is a great little script combo that automatically changes the ClientIdentifier for Munki clients and then automatically creates a corresponding manifest on the Munki server that includes the old manifest.

I wanted to tweak it quite a bit to fit some of the quirks of how our organization does Munki client manifests, so I wrote up a tweaked version of the enroll shell script.

One of the things I wanted to get via the script is a particular user’s full name, and I had trouble tracking down a tutorial on exactly how to get that. I also found that even when I used the usual instructions, on one computer, it didn’t work—there was an extra carriage return before the full name… but that wasn’t the case on other computers (and it wasn’t a Yosemite vs. El Capitan thing either).

So this command actually gets the user’s full name even if there’s a random extra newline in the output. This works on both Yosemite and El Capitan (and probably earlier versions, but I haven’t tested on Mavericks and before):

dscl . -read /Users/SHORTUSERNAME dsAttrTypeStandard:RealName | sed ‘s/RealName://g’ | tr ‘\n’ ‘ ‘ | sed ‘s/^ *//;s/ *$//’

where SHORTUSERNAME is the short username you’re trying to get the full name of.

Basically, this read’s the user’s information, specifically the RealName. Then it strips out the RealName: part, then strips out any newline indicators, then finally strips out any preceding or trailing spaces.

Not sure if anyone else out there is looking for how to get the full name of a user using the terminal on a Mac, but that’s how you do it.


Posted

in

by

Comments

One response to “Terminal command to get the full name of a Mac user”

  1. Gary Seifert Avatar

    Truly one of the best sites I have ever seen for clear concise explanations of mac related items. Well done.

Leave a Reply

Your email address will not be published. Required fields are marked *