Sponsored Content
Top Forums Shell Programming and Scripting script to find a file and send a mail Post 302135266 by ahmedwaseem2000 on Friday 7th of September 2007 05:39:08 AM
Old 09-07-2007
Sorry! I should read the posts thoroughly before posting replies.......
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find files older than 30mins,count and send mail

Hi all, I wrote this script to find files older than time parameter, count the number of files, and send an email to me that some files are in a particular folder. For the particular path, the script should wait delay parameter before running again. For example, assuming the input file looks... (4 Replies)
Discussion started by: kayarsenal
4 Replies

2. Shell Programming and Scripting

How to attach a file & send mail thru script

In shell script how can I attach a file and send a mail. suppose if I written like the following way usr/bin/mail 'subject" "mail_id" < file. a mail goes to the mail-id with the content of file.But I want the file to be atttached to the mail.How can I get it.is there any way for this. ... (9 Replies)
Discussion started by: Mar1006
9 Replies

3. Shell Programming and Scripting

Pull E-mail address from file, send e-mail

Hello, I am new to perl and need to create a script that will read a file and pull a name from the file and send e-mail. How can I use the following awk statement in a perl script? grep UNIXadmins /root/mail.conf | awk '{ print $2}' and use the output to send a e-mail. Any help would... (1 Reply)
Discussion started by: DC Heard
1 Replies

4. UNIX for Advanced & Expert Users

Script which can send file to diffrent mail ids.

Hi i am looking for the script which can send file to different mailids, please halp me out. Thanks in advance. (3 Replies)
Discussion started by: vpandey
3 Replies

5. UNIX for Dummies Questions & Answers

How to send html file in a mail not as an attachment but it should display in the mail in table for

Hi The below script working when we are sending the html as attachment can u please guide how to send thesmae data in table form direct in the mail and not in mail attachment . cat Employee.sql SET VERIFY OFF SET PAGESIZE 200 SET MARKUP HTML ON SPOOL ON PREFORMAT OFF ENTMAP ON - HEAD... (0 Replies)
Discussion started by: mani_isha
0 Replies

6. Shell Programming and Scripting

Script Send Mail by Parameters avec Attached file

Hi i have a script for show the information files. ls -l how do you for to place this result in a file of text and to send it attached for e-mail. The information of the mail must be in paramentros. for example e-mail to I must write the e-mail, the subject and the motive of the mail! ... (1 Reply)
Discussion started by: krlos07
1 Replies

7. Shell Programming and Scripting

HELP simple script to find e-mail address on a file

Hello guys, im new to to unix/linux i have a text file like this: person1@test.com iisiiasasas person2@test.com 123w2 3233 sajsja person3@test.com jsajjsa sajsjasaj person4@test.com I want to extract only e-mail address and get rid of all other stuff, i want an output like this ... (4 Replies)
Discussion started by: RazorMX
4 Replies

8. Shell Programming and Scripting

Need Script to ZIP/SAVE & then DELETE Log file & send a mail conformation for any error

ENVIROMENT Linux: RHEL 6.4 Log Path: /usr/iplanet/servers/https-company/logs Log Format: user.log.03-15-2015 I have log4j log rotation enabled rotating files on a daily basis. The rotated logs are NOT compressed & are taking up too much space. I need a script that will run daily that... (1 Reply)
Discussion started by: admin_job_admin
1 Replies

9. Shell Programming and Scripting

How to send mail using find command?

Hello, I wanted to send mail to multiple receiptant by using uuencode with find command. I have used the below find command to search a file, which generating daily at the particular time. . find . -type f -mtime -1 -printf '%f %TH:%TM\n' | awk '$NF>"06:40" && $NF<"06:50" {print $1}' I... (2 Replies)
Discussion started by: pokhraj_d
2 Replies

10. Shell Programming and Scripting

Check file if not found send mail if exit call second script

I need to check my script and change to working mode. currently it was not sending the mail and exit without calling the second script. I need to check the file is present ="/home/Rvtools/test.csv" if this file not found after the time retry send mail file not found If the file exit run the... (2 Replies)
Discussion started by: ranjancom2000
2 Replies
EvmEventPost(3) 					     Library Functions Manual						   EvmEventPost(3)

NAME
EvmEventPost(), EvmEventPostVa() - post an EVM event SYNOPSIS
Library EVM Support Library Parameters connection The connection through which events are posted. See EvmConnCreate(3). event The event that is to be posted to the specified connection. See EvmEventCreate(3). item_id The identifier for the event data item to be set. See EvmItemSet(3) for possible values for this operand, and the data con- tained by the data item. item_value The value to be stored in the associated item indicated by item_id. DESCRIPTION
An EVM client program uses the routines described on this page to pass events to the EVM daemon, for distribution to subscribers. posts an event that has already been created with or creates, posts and destroys an event in a single call. It first creates a new event, adding any data items supplied in the call to it. If the event operand is not NULL, the contents of the supplied event are then merged into the new event, and the new event is posted. The new event is destroyed before the routine returns, and the supplied event (if any) is unchanged. See EvmItemSetVa(3) for details of the item_ids and item_values that may be passed as operands to this routine. If NULL is passed as the connection operand to either of these routines, the event is posted to the local daemon using a temporary connec- tion. The temporary connection is destroyed before the routine returns. Because of the overhead associated with creating and destroying an EVM connection, pass NULL only if your program rarely posts events. If either routine is unable to pass the event to the daemon, the error is reported immediately through the return code. If the event is passed to the daemon, the type of response depends on the response mode specified when the connection was created. Notes 1. These routines do not destroy the event passed as the event operand. Explicitly call to destroy the event and free its memory once it is no longer needed. 2. Avoid posting a large number of events in rapid succession, since this may cause the connection's send buffer to fill, and the posting process to block until the EVM daemon has relieved some or all of the data. Although this is a normal part of process synchronization, some high-performance processes may prefer to block as infrequently as possible. can be used to increase the size of the send buffer. See EvmConnControl(3) for more information. 3. When using extended item_ids to supply names and values of variable items to be sure to supply the correct number of operands for each. A variable name and value is required for all such items, and some variable types require an additional argument. See EvmItemSetVa(3) for more information. RETURN VALUE
The operation completed without error. The EVM daemon rejected the event. The most likely reasons are that no template has been registered for the event, or that the caller is not authorized to post the event. See evmtemplate(4) and evm.auth(4) for more information. One of the arguments to the function is invalid. A value in a structure member is invalid. An operation failed because an attempt to acquire heap memory failed. The connection's output buffer is full, and the event has been queued in heap space. Another attempt is made to flush the queue when the next call is made to or when the caller invokes This error code is only returned for connections for which has been invoked with the request argument set to A read error occurred while reading from the EVM daemon connection. The connection is no longer usable. The caller needs to invoke to destroy it. A write error occurred while writing to the EVM daemon connection. The connection is no longer usable. The caller needs to invoke to destroy it. ERRORS
The value of is not set. SEE ALSO
Routines EvmConnControl(3), EvmConnCreate(3), EvmConnDestroy(3), EvmConnRegistrationGet(3), EvmEventCreate(3), EvmEventDestroy(3), EvmItemSetVa(3). Event Management EVM(5). Event Connection EvmConnection(5). EVM Events EvmEvent(5). EvmEventPost(3)
All times are GMT -4. The time now is 05:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy