How to know who executed a script?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to know who executed a script?
# 1  
Old 07-28-2008
How to know who executed a script?

Dear all

I would like to capture who executed a script to a script's variable (i.e. testing.sh), so I can save it to a log file.

testing.sh
#! bin/ksh

user=`<< code here >>` // get the info below in RED color

<<main logic>>

echo "$user execute testing.sh on `date`" >> testing.log

--END of script--

Below is output of who command in my AIX UNIX server.
devlib pts/2 Jul 28 16:41 (pc001.testing.home)
devlib pts/3 Jul 28 10:48 (pc001.testing.home)
devlib pts/6 Jul 17 11:23 (pc002.testing.home)
lisadm pts/7 Jul 24 17:50 (pc008.testing.home)
devlib pts/8 Jul 07 11:51 (pc003.testing.home)
lisadm pts/9 Jul 25 09:45 (pc001.testing.home)
sccs pts/10 Jul 25 17:38 (pc002.testing.home)
devlib pts/12 Mar 05 17:59 (pc005.testing.home)
devlib pts/13 Jul 28 10:33 (pc008.testing.home)
devlib pts/14 Jul 17 11:23 (pc009.testing.home)

The first column is UNIX account ID, which is shared by a group of peoples. The last column is the computer name that open the terminal. How can I know (e.g. pts/3, pc001.testing.home) was executed the script?

Thank you very much.
# 2  
Old 07-28-2008
ps command is your friend here.

Suppose I am running a script testing.sh ,you can find that out by the ps -ef command.

Code:
[root@iqmango ~]# ps -ef | grep testing.sh | grep -v $$
root      5413 12390  0 15:15 pts/2    00:00:00 sh testing.sh

Hope this helps!
# 3  
Old 07-28-2008
It really help.

Thanks for your hints.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Create file when script has executed

I would like to get some kind of notification when a script has been executed. I know how to get an email sent, but I something different. This works, unless it occurs when I am not at my computer. notify-send "Cleanup of Backup Directories complete." It could even involve creating... (2 Replies)
Discussion started by: drew77
2 Replies

2. Shell Programming and Scripting

Script is not getting executed

Hi All, I have written a programme where i need to work in one session but when that session get executed it doesnt execute other programme till I write exit. Below is the script #!/bin/bash echo 'Going to start' exectrusteduser.com sh.com cd /UAT_Logs/CDCI_LOGS/SEEDADM pwd echo... (6 Replies)
Discussion started by: ripudaman.singh
6 Replies

3. Shell Programming and Scripting

Capture run time of python script executed inside shell script

I have bash shell script which is internally calling python script.I would like to know how long python is taking to execute.I am not allowed to do changes in python script.Please note i need to know execution time of python script which is getting executed inside shell .I need to store execution... (2 Replies)
Discussion started by: Adfire
2 Replies

4. Shell Programming and Scripting

INIT Script Getting Executed Twice?

Hello All, I copied and pasted the "/etc/init.d/skeleton" file to a new one so I could create my own init script for a program. Basically the ONLY edit I made to the skeleton "template" so far was to search and replace "FOO" with "snort". *NOTE: I know there are a bunch of snort init scripts... (6 Replies)
Discussion started by: mrm5102
6 Replies

5. Shell Programming and Scripting

Shell script not getting executed

Hi As per my requirement when I run . ./file.sh am getting the following error -bash:ELF: command not found when i execute as ./file.sh it is getting executed.How to resolve this. Thanks in advance. (3 Replies)
Discussion started by: pracheth
3 Replies

6. Shell Programming and Scripting

Shell script executed from Informatica ETL tool is spawning 2 processes for one script

Hi, I am having a shell script which has a while loop as shown below. while do sleep 60 done I am executing this script from Informatica ETL tool command task from where we can execute UNIX commands/scripts. When i do that, i am seeing 2 processes getting started for one script... (2 Replies)
Discussion started by: chekusi
2 Replies

7. Shell Programming and Scripting

script has been executed successfully or not??

Guys, How can we know whether a script has been executed successfully or not ? We dont have any log directories, and we are not given a chance to modify the script. Could someone help me out with this Thanks (2 Replies)
Discussion started by: bobby1015
2 Replies

8. AIX

Script not getting executed via cron but executes when executed manually.

Hi Script not getting executed via cron but executes successfully when executed manually. Please assist cbspsap01(appuser) /app/scripts > cat restart.sh #!/bin/ksh cd /app/bin date >>logfile.out echo "Restart has been started....." >>logfile.out date >>logfile.out initfnsw -y restart... (3 Replies)
Discussion started by: samsungsamsung
3 Replies

9. Shell Programming and Scripting

Variables of executed script available in executing script

Hi, I have a script get_DB_var.ksh which do a data base call and get some variables as below: sqlplus -silent $user/$pass@dbname <<END select col1, col2, col3 from table_name where col4=$1; exit; END Now I want to access all these variables i.e.... (9 Replies)
Discussion started by: dips_ag
9 Replies

10. UNIX for Advanced & Expert Users

Script working successfully only when executed twice

Guys, i am facing a very strange issue, my code below does an ftp to server A and gets a file to Server B, once the file is in B an if condition is present to check if the pattern of the filename is ABC* then it has to be encrypted using OPENSSL as ABC.enc else if it of pattern 123* has to be... (3 Replies)
Discussion started by: meva
3 Replies
Login or Register to Ask a Question