Sponsored Content
Top Forums Shell Programming and Scripting How to get users history as mail.. Post 302564075 by anishkumarv on Wednesday 12th of October 2011 06:51:57 PM
Old 10-12-2011
:-( :-( :-( hmm Iam asking how to get the commands , History is the only way?? i know Crontab and all.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

tcsh history for several users

Hi all! I have a nice challange for you today :) I have several users that use "tcsh" the problem is that they all have the same "home_dir" (application reasons...), now... as far as i know (correct me if i'm wrong) every user have an history file in his "home_dir" that calls ".sh_history" or... (0 Replies)
Discussion started by: eliraza6
0 Replies

2. HP-UX

How to enforce users not to modify their command history.

As a system administrator. sometimes we see the users are trying some commands dangerous for the system health and remove them from their individual coomand history file. How it is possible to enforce that the normal usres will will not be able to modify the history. Thanks in advance. Partha (4 Replies)
Discussion started by: partha_bhunia
4 Replies

3. Shell Programming and Scripting

stop users from running 'history -c' in Linux

Hi All, My question is how can i stop my users on system from deleting their history. How can i stop the users from running 'history -c'. I have searched thoroughly on the forum but didn't find any satisfactory solution to the problem. kindly help if you any suggestions Thanx in... (3 Replies)
Discussion started by: xander
3 Replies

4. Shell Programming and Scripting

Send e-mail to users

Dear all, The perl script to send e-mail is working in my current script. #This part of the script will send the email notification my $to='mohamed.rahman@noridian.com'; my $from='xyz@hotmail.com'; my $subject='POS_CODES_38 DATA LOADED SUCCESSFULLY.'; my $message='The total no. of files... (2 Replies)
Discussion started by: msrahman
2 Replies

5. Shell Programming and Scripting

Shell script for to view all users & groups history in root

Dear All, I want to know all users & group history in one file, for root terminal through shell or any other option (5 Replies)
Discussion started by: kpoobathi
5 Replies

6. UNIX for Dummies Questions & Answers

The history command: See other users command history

Can anyone tell this: If two users are logged into the same server from different locations. Is there a way to see the history command of the other user? I tried the history command, but it is showing me only the commands I used. Thanks in advance for your help. Iamnew2solaris (1 Reply)
Discussion started by: iamnew2solaris
1 Replies

7. Shell Programming and Scripting

Shell Script to zip users cmd history log files

I admit I am terrible with scripting, so when I was asked to store users' command history lines and zip them on monthly basis what I did was to create a file "user_history_Feb" with the following contents: Part A # more user_history_Feb cp -p /var/log/user_history/*history... (6 Replies)
Discussion started by: hedkandi
6 Replies

8. Shell Programming and Scripting

Tracking users through history command

Hi folks, I have the basic query that there are 3 unix boxes having their individual access now in my team there are 4 members who are using the same credentials to access those 3 boxes through putty ssh from their windows desktop , now if i want to check which 4 members have executed the... (1 Reply)
Discussion started by: punpun66
1 Replies

9. Shell Programming and Scripting

History of all the users in single file with command , date . time , ip and user

HTML Code archive_history() { HISTORYOLD=${HISTFILE}.archive CURTIME=`date` CURTTY=`tty` IP=$(echo $SSH_CLIENT | awk '{print $1}') if ; then echo "#-${HOSTNAME}-- ${CURBASHDATE} - ${CURTIME} ($CURTTY) ${USER} ${IP}----" >> $HISTORYOLD history... (2 Replies)
Discussion started by: rehantayyab82
2 Replies

10. Shell Programming and Scripting

History of all the users in single file with command , date . time , ip and user

HTML Code: archive_history() { HISTORYOLD=${HISTFILE}.archive CURTIME=`date` CURTTY=`tty` IP=$(echo $SSH_CLIENT | awk '{print $1}') if ; then echo "#-${HOSTNAME}-- ${CURBASHDATE} - ${CURTIME} ($CURTTY) ${USER} ${IP}----" >> $HISTORYOLD history... (0 Replies)
Discussion started by: rehantayyab82
0 Replies
ns_register_proc(3aolserver)				    AOLserver Built-In Commands 			      ns_register_proc(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_register_adp, ns_register_proc, ns_unregister_adp, ns_unregister_proc - Facilities to manage mappings for HTTP requests to Tcl proce- dures or ADP files SYNOPSIS
ns_register_adp ?-noinherit? method url file ns_register_proc ?-noinherit? method url proc ?arg? ns_unregister_adp ?-noinherit? method url ns_unregister_proc ?-noinherit? method url _________________________________________________________________ DESCRIPTION
These commands manage mappings of HTTP request to Tcl procedures or ADP files. The server will invoke the given procedure or ADP file when the corresponding method/url combination is requested. The method is normally one of GET or POST although there is no restriction as internally method is always treated simply as a string. Spe- cialized applications, for example, a WebDav file server, could register additional methods such as PUT, DELETE, or BROWSE. The url parameter specifies the trailing, pathname portion of an url, for example, /myapp/search. Requests for the specified url or any url's with additional path elements which do not have more specific mappings will be handled by the given procedure or ADP file. This behavior can be changed with the optional -noinherit flag in which case only exact match url's will be handled. In addition, for the final pathname component, a "glob-style" pattern may also be specified to further restrict the match. For example, /myapp/*.adp would handle requests for all url which start with /myapp and have a final pathname component which ends with the .adp exten- sion. Note that the method cannot be specified as a glob pattern, i.e., attempting to map "*" will map the single character string "*" as the method, it will not map all possible methods. Calls to ns_register_proc and ns_register_adp are normally placed in server initialization scripts. The ns_unregister_proc and ns_unregis- ter_adp commands are rarely used, normally only in the context of development or debugging. ns_register_adp ?-noinherit? method url file This command maps the given method/url combination to a specific ADP file. The file argument must be an absolute pathname and a regular file. When the server receives a matching request, it will allocate a Tcl interpreter and invoke the ns_adp_include command with the given file, returning the results of the output buffer to the client when the command returns. Note it is also possible to provide mappings for ADP files in the config file as well although those mappings are intended to sup- port mixing of ADP and static files in the server's basic page root. Using ns_register_adp can provide more general mappings, not requiring actual ADP files to exist at the corresponding location in the filesystem. ns_register_proc ?-noinherit? method url proc ?arg? This command maps the given method/url combination to a Tcl procedure. When the server receives a matching request, it allocates a Tcl interpreter and calls Tcl_Eval with a script constructed of the procedure with zero, one, or two arguments depending on the arguments expected for the procedure. If the procedure accepts no arguments, none are passed and the arg parameter to ns_regis- ter_proc, if given, is ignored. If it takes one argument, the procedure is passed the optional arg parameter or a null string if no argument was given. If the procedure accepts two arguments, the first argument will be the "connection id" followed by the argument as described for the case of one argument. The connection id is a small string of the form "cns#" where # is a monotonically increasing integer value which will eventually wrap after the server has been running for a long time. This id is also returned via the the ns_conn id command. This connection id is for information purposes only and is is otherwise useless and not required to be passed to any other AOLserver Tcl command. See the EXAMPLES section for details on how various arguments are handled for request procedures. ns_unregister_adp ?-noinherit? method url ns_unregister_proc ?-noinherit? method url These commands are identical and can be used to remove any mapping for the given method/url. Note that no check is made to confirm the given mapping exists or was in fact a Tcl procedure, ADP file, or some other C-level mapping created with the Ns_RegisterRequest routine. The optional -noinherit flag, if specified, requests removal of mappings previously made with the -noinherit flag with the commands above or via the NS_OP_NOINHERIT bit set in a call to the Ns_RegisterRequest routine. EXAMPLES
The following example demonstrates the use of the -noinherit flag. Assume the following startup initializations code: ns_register_proc -noinherit GET /foo/bar Aproc ns_register_proc GET /foo/bar Bproc ns_register_proc GET /foo/bar/hmm Cproc In this case, Aproc will be called when the requested URL is exactly /foo/bar while Bproc will be called when the requested URL is anything below /foo/bar, provided there is not already another procedure registered to be called for that exact URL or for an URL with a closer match. Cproc (not Bproc) will be called when the requested URL is equal to or below /foo/bar/hmm. The following example demonstrates the multiple forms of which a Tcl procedure can be defined: ns_register_proc GET /zeroargs 0args myarg ns_register_proc GET /onearg 1arg myarg ns_register_proc GET /twoargs 2args myarg ns_register_proc GET /twoargs 2args myarg proc 0args {} { ns_returnnotice 200 "no args" } ;# noargs proc 1arg {arg} { ns_returnnotice 200 "arg: $arg" } ;# context proc 2args {conn arg} { ns_returnnotice 200 "connid: $conn, arg: $arg" } ;# conncontext When a request for the /twoargs URL is received, the 2args procedure will be called with the value of the connection id as the conn vari- able and "myarg" as the value of the arg variable. When the server receives a request for /onearg, the server will invoke the 1arg procedure with just "myarg" as the value for the arg proce- dure variable. The connection id, if needed, can be obtained with ns_conn id. Finally, when the server receives a request for /zeroargs, the 0args procedure will be called with no options. The "myarg" value passed to ns_register_proc is ignored and the connection id, if needed, can be obtained with ns_conn id. SEE ALSO
ns_adp(n), Ns_RegisterRequest(3), Ns_UrlSpecificGet(n), Ns_UrlSpecificSet(n) KEYWORDS
request callback, connection AOLserver 4.5 ns_register_proc(3aolserver)
All times are GMT -4. The time now is 02:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy