Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a script that needs to know what username it is run from.

When I run it from shell, I can easily use $ENV{"USER"}, which is provided by bash.

But apparently - then the same script is run from cron, also via bash - $ENV{"USER"} is not defined.

Of course, I can:

my $username = getpwuid( $< );

But it doesn't look nice - is there any better/nicer way? It doesn't have to be system-independent, as the script is for my personal use, and will be only run on Linux.

share|improve this question

4 Answers

up vote 6 down vote accepted

crontab sets LOGNAME so you can use $ENV{"LOGNAME"}. LOGNAME is also set in my environment by default (haven't looked where it gets set though) so you might be able to use only LOGNAME instead of USER.

Although I agree with hacker, don't know what's wrong about getpwuid.

share|improve this answer

Try getting your answer from several places, first one wins:

my $username = $ENV{LOGNAME} || $ENV{USER} || getpwuid($<);
share|improve this answer

Does this look prettier?

use English qw( −no_match_vars );

my $username = getpwuid $UID;
share|improve this answer
2  
Heh. In my actual code, I (of course) use English, and I actually use $REAL_USER_ID, but I didn't want to spark any "English vs. Short-names" debate in here :) – depesz Sep 4 '09 at 14:52
In my code I would use $<, so that isn't a debate I care about, but I thought you might consider it prettier. – Chas. Owens Sep 4 '09 at 15:22

Sorry, why doesn't that "look nice"? That's the appropriate system call to use. If you're wanting an external program to invoke (e.g. something you could use from a bash script too), there are the tools /usr/bin/id and /usr/bin/whoami for use.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.