sh script to get unix username of person executing it


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sh script to get unix username of person executing it
# 1  
Old 05-25-2012
sh script to get unix username of person executing it

Hi,

I am writing a script, and I need to incorporate some logic where I can find out the unix username of the person who is executing the script.

The issue is , a particular user could have "sesu" ed into a group id. for eg. root, and then executed the script. In that case, instead of root, the unix username would be desired eg. abc123

I tried echoing $USER , and then grepping it from /etc/groups. But for a group id there are N different users, and I cant pinpoint to the single user who executed the script.

Not sure how to proceed from here. Any pointers?

I am on AIX 5.3


Neil
# 2  
Old 05-25-2012
No clear what you are trying to do. Try reading up on the id command and about the subject of real and effective UIDs.
# 3  
Old 05-25-2012
Also the logname command.
# 4  
Old 05-29-2012
Thanks all!

I used
Code:
who am i|awk '{ print $1F }'

Thanks
# 5  
Old 05-30-2012
Why run 2 commands and a pipeline when the
Code:
logname

command does the same thing?
# 6  
Old 05-31-2012
How about:
Code:
echo ${SUDO_USER:-$USER}

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Executing of UNIX script using email

Dear Unix Leads, can you please let me know is it possible to execute a shell script in UNIX machine sending an email from outlook or gmail ? or is it possible to generate a token file in UNIX by sending email which we can indirectly use to trigger script your response on this is highly... (5 Replies)
Discussion started by: mirwasim
5 Replies

2. Shell Programming and Scripting

Executing java .jar from UNIX script

I have a .jar placed in my Unix directory. The .jar creates a .csv file .I want to execute the .jar and place the output file in a target Unix directory. The Unix Script is as follows. The issue that i am facing is that the file is not being placed in the REPORTDIR=/cdunix/IQNavigator/wrk instead... (4 Replies)
Discussion started by: pankajkargeti12
4 Replies

3. UNIX for Dummies Questions & Answers

Books for person who want to be Linux/Unix administrator

Hi, I would like to become Linux/Unix administrator. Of course I am aware that it is practically impossible to get that job immediately and in the beginning it will be Junior position or 2nd level of technical support. But I would like to ask: how in-depth knowledge about daemons such like... (2 Replies)
Discussion started by: DavidMax
2 Replies

4. UNIX for Dummies Questions & Answers

Renaming a file (non unix person)

I am trying to move a file to a new file with a datestamp in the filename on a unix server using a script I am trying to write. I have searched this forum and have tried 100 different variations but cannot solve my problem. My requirement is: Rename archiveSF\sfglsoarian.txt to... (3 Replies)
Discussion started by: cavleader
3 Replies

5. UNIX for Advanced & Expert Users

Executing a shell script from windows;script present in unix

I need to execute a shell script kept in unix machine from windows. User id, password area available. For eg. There's a shell script wich moves all the logs kept in my home directory to a directory named LOGS. Now i need to get this done through windows; either using a batch file, or java... (4 Replies)
Discussion started by: rajneesh_kapoor
4 Replies

6. Shell Programming and Scripting

Executing unix script on windows through MKSToolkit

hi, I have an unix script and i'm executing from command prompt in windows. The script is exiting immediately when i call the script.But the script is getting executed at the back end. But when i type sh at command prompt i'm getting $ sign and i can see the execution of script. Is there... (5 Replies)
Discussion started by: ammu
5 Replies

7. UNIX for Advanced & Expert Users

Executing SQLPLUS in UNIX Script from JAVA

Hi ALL, I would like to execute one SQL query(ORACLE) in UNIX shell script. For this I used sqlplus in script and tested locally. It worked fine. But my requiremnt is to execute the script from Java. In this case the UNIX part is working but sqlplus is not returning anything The JAVA code used... (0 Replies)
Discussion started by: anooptech
0 Replies

8. Shell Programming and Scripting

Doubt on Executing unix commands in script

How can I execute the unix command "cd - Change directory" command, so that my command prompt should be reflected for that change. Example : Now you are in your home directory i.e /home/naresh and you have some sub directory called unixinfo in your home directory. i want to write a script,so... (2 Replies)
Discussion started by: Naresh Kumar
2 Replies

9. Post Here to Contact Site Administrators and Moderators

Unix certified person locator

I need to locate a specific person who is certified in Unix. Please help. (1 Reply)
Discussion started by: tlwscope
1 Replies

10. UNIX for Advanced & Expert Users

Executing a .dll from a Unix script

Is it possible for a Unix script to execute a .dll. If so, where would I find information/examples of how to do that? Thanks, in advance, for any help. :rolleyes: (2 Replies)
Discussion started by: BCarlson
2 Replies
Login or Register to Ask a Question