Sponsored Content
Top Forums Shell Programming and Scripting Write a scripts to kill idle user for 60 min. & email user list to admin in text file Post 302510301 by guto on Saturday 2nd of April 2011 10:05:39 PM
Old 04-02-2011
sumit30,
if I was you, based on the output of 'whoidle', I would probably lunch it with the option to get all the idle users in the system and save it to a file within the same directory with the script. supposing the option is '-a', it would something like this: 'whoidle -a' >ALL_IDLE_USERS

this code has not been tested on an AIX system. I tested it on my laptop using the sample data you supplied and it's working like a charm.
Code:
------------------------beginning script-------------------------
DATE=`date +%D`
TIME=`date +%T`
HNAME=`uname -n`
LFILE=$(uname -n)_Idle_Users_$(date +%h)_$(date +%d)_$(date +%y).txt
SUBJECT="$HNAME Idle User List"
EMAIL="admin@yourdomain.com"
HEAD=`cat IDLE_USERS |sed q`
cat ALL_IDLE_USERS |sed '1d' |egrep -v "root|daemon|bin|sys|adm|nobody|abc|pqr" >IDLE_USERS
IDL=`cat IDLE_USERS |awk '{ print $6}'`
echo  -e "---------------------------------------------- \nDATE: $DATE\t\t  TIME:  $TIME\n-----------------------------------------------------------------------------------------"  > $LFILE
echo -e "$HEAD\t\tStatus" >> $LFILE

for DL in $IDL
  do
    H=`echo $DL |cut -d: -f1`; M=` echo $DL |cut -d: -f2`
    if [ $H -gt 0 ] || [ $M -eq 60 ]; then
       kill -15 $PID;
       CLINE=`grep -w $DL ALL_IDLE_USERS`
       RUNNING=`ps -p $PID |sed '1d'`
       if [ "$RUNING" == "" ]; then
          echo -e "$CLINE \tKilled" >> $LFILE
       else
          echo -e "$CLINE \tRunning" >> $LFILE
       fi
    fi
done
echo -e "-----------------------------------------------------------------------------------------" >> $LFILE

if [ -s $LFILE ]; then
   mail -s $SUBJECT $EMAIL < $LFILE
   touch $LFILE.txt
fi
----------------end script---------------

this is an elegant way of resolving your problem without the need for any complications: such as the 8th point.
in my opinion 8th point isn't necessary. thus, the code that I supplied to you the other time isn't needed because you are not dealing with a file or a variable that must continue growing.
for instance, if you were picking the idle users from a certain system-log-file which must continue growing as the system is running and logging various events, then you would need to have a way to loop through that file as long as it continues to increase. but your problem is much simple based on what I perceive from your explanation.
as far as I know, the technique that intend to use on point 8 is normally used to monitor specific regexs in a log-files.
NEXT TIME, I'M GONNA CHARGE YOU A FEE OR SOMETHING! lol; I am at home for over a year. I need to get paid....

Last edited by DukeNuke2; 04-03-2011 at 03:09 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

user & group read/write access question

folks; I created a new users on my SUSE box and i need to give this user/group a read write access to one specific folder. here's the details: - I created new user "funny" under group "users". - I need to give this user "funny" a read/write access to another directory that is owned by "root".... (3 Replies)
Discussion started by: Katkota
3 Replies

2. UNIX for Dummies Questions & Answers

Difference between : Locked User Account & Disabled User Accounts in Linux ?

Thanks AVKlinux (3 Replies)
Discussion started by: avklinux
3 Replies

3. UNIX for Advanced & Expert Users

Send email as a different user than the user logged in

Hi I am using mailx to send email and am wondering if there is a way I can send the email from a different user than the user logged in. something like do-not-reply@xyz.com Thank you. (1 Reply)
Discussion started by: rakeshou
1 Replies

4. Shell Programming and Scripting

How to kill process after x idle min?

I need a script to kill those process id whose idle time is more than 30min plz help me (3 Replies)
Discussion started by: salil2012
3 Replies

5. Homework & Coursework Questions

[Scripting]Find & replace using user input then replacing text after

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: (o) Checkout an auto part: should prompt the user for the name of the auto part and borrower's name: Name:... (2 Replies)
Discussion started by: SlapnutsGT
2 Replies

6. Shell Programming and Scripting

User idle time and kill

Hello.. I have many sleepy users on my Solaris box and need to kill them if they are idle for more than 45 minutes for example...I know who -u gives and the idle time but unable to make a awk line to get the condition perfect. Please help...:wall: (9 Replies)
Discussion started by: wimaxpole
9 Replies

7. Shell Programming and Scripting

Script to Send Email to a user when an admin kills process

Can anyone create or give me a script that I can use to email a user automatically when I kill one of their processes? Or Can you give me a script to allow me to email a user (entering email manually) when a process is killed? Like showing what the PID was and a reason the admin killed it? Is... (2 Replies)
Discussion started by: JoeGazz84
2 Replies

8. Shell Programming and Scripting

set only some command & scripts permission to a particular user

hi, i am new in unix.......i am using bash and i want to create a user which has only some command and scripts permission.........is it possible? thanx (1 Reply)
Discussion started by: rakeshtomar82
1 Replies

9. Homework & Coursework Questions

Need to write a script user.sh that parses name & password

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Write a script called user.sh that parses the name and password of given in a file (user.txt) and creates the user... (1 Reply)
Discussion started by: Nygenesis
1 Replies

10. UNIX for Dummies Questions & Answers

Deletion of list of user based on a text file In LDAP UNIX server

Dear All, It would be really nice, if you could help me to write a script for deletion of list of user( more than 15000 users) stored in a file and sorted by email address( i need deletion of only a particular type of mail address). Is the any script to write and take the file as input and... (3 Replies)
Discussion started by: Chand
3 Replies
DATE_DEFAULT_TIMEZONE_SET(3)						 1					      DATE_DEFAULT_TIMEZONE_SET(3)

date_default_timezone_set - Sets the default timezone used by all date/time functions in a script

SYNOPSIS
bool date_default_timezone_set (string $timezone_identifier) DESCRIPTION
date_default_timezone_set(3) sets the default timezone used by all date/time functions. Note Since PHP 5.1.0 (when the date/time functions were rewritten), every call to a date/time function will generate a E_NOTICE if the timezone isn't valid, and/or a E_WARNING message if using the system settings or the $TZ environment variable. Instead of using this function to set the default timezone in your script, you can also use the INI setting date.timezone to set the default timezone. PARAMETERS
o $timezone_identifier - The timezone identifier, like UTC or Europe/Lisbon. The list of valid identifiers is available in the "List of Supported Time- zones". RETURN VALUES
This function returns FALSE if the $timezone_identifier isn't valid, or TRUE otherwise. EXAMPLES
Example #1 Getting the default timezone <?php date_default_timezone_set('America/Los_Angeles'); $script_tz = date_default_timezone_get(); if (strcmp($script_tz, ini_get('date.timezone'))){ echo 'Script timezone differs from ini-set timezone.'; } else { echo 'Script timezone and ini-set timezone match.'; } ?> CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | Now throws E_WARNING rather than E_STRICT. | | | | | 5.1.2 | | | | | | | The function started to validate the $time- | | | zone_identifier parameter. | | | | +--------+---------------------------------------------------+ SEE ALSO
date_default_timezone_get(3), "List of Supported Timezones". PHP Documentation Group DATE_DEFAULT_TIMEZONE_SET(3)
All times are GMT -4. The time now is 02:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy