Sponsored Content
Top Forums Shell Programming and Scripting Sending an email with more than one files Post 302118945 by mahesh. on Friday 25th of May 2007 10:49:38 AM
Old 05-25-2007
Helo Thambi,

Iam new user. I also using HP-UX, can u give some tips to obtain system open file table value.

Mahesh
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Sending email

I have an Solaris 8 machine running a managment application. One of the features of this application is to configure alarm forwarding to an email undress. When i configured the application to do that, it asked me only about the recipient email address. Quesiton: how to configure my Solaris 8... (7 Replies)
Discussion started by: bcheaib
7 Replies

2. Shell Programming and Scripting

Sending Multiple Files through email

Hi Everyone, I'm using the uuencode command with the mail command to send out emails through a UNIX script. The problems is that i have a number of gif files that i need to attach to a single email but the number and name of the gif files is not static. Example today the folder home/Desktop may... (4 Replies)
Discussion started by: nbvcxzdz
4 Replies

3. UNIX for Dummies Questions & Answers

sending email

hi, is there any possiblity to send email from the command prompt, for eg i want to send alert to any mail id like /data/logs is 80% to my hotmail account , xxx@hotmail.com is this really possible,, if not, then what are the prerequistes need to do this (1 Reply)
Discussion started by: vasikaran
1 Replies

4. Shell Programming and Scripting

Sending mutiple files thru email to lotus notes

Hi All, I am currently using the following script to send the single file to one/more email addresses. I need to send mutilple files at same time, are there anyway I could modify the script or write new one to accomplish the same. Script *************** #!/bin/ksh # Author: Manish... (4 Replies)
Discussion started by: lapisguy
4 Replies

5. UNIX and Linux Applications

Sending email via syslog-ng

Hi friends I have syslog-ng installed in RHEL5 server, I make it as CEntral log for all servers in my network, Filtered by IP Now What I want to do is make it send to me an email for a specific log for one of my server, In other word when any log sent from this IP (192.168.1.1 ) For... (4 Replies)
Discussion started by: reaky
4 Replies

6. HP-UX

Sending Unix files as attachments in an email

Hi, I am executing the following command in order to send a file as an attachment: mailx -s "Subject" emailID@xyz.com < Testfile.txt Instead of attaching the file Testfile.txt, it is writing the contents of the file in the email message body. Please advise on how I can send the file as an... (7 Replies)
Discussion started by: sangharsh
7 Replies

7. Linux

sending an email

I have used an already-built ActiveX control to send email from my asp web pages. One of the parameters I fill is FromName which defines the tittle the recipient will see in the From entrance in his Inbox. Now Iīm trying to use mail to send an email from a Shell but I havenīt found the... (1 Reply)
Discussion started by: RandomAccess
1 Replies

8. Shell Programming and Scripting

Sending email with multiple files..

Hello,, I am loading data into the 4 tables from 4 different input files. The data gets loaded, and the e-mail is also sent to the user, but the log files for all the 4 files is not been sent.. I am trying to send e-mail to users with the log file as attachment. The script is as follows:... (30 Replies)
Discussion started by: msrahman
30 Replies

9. UNIX for Dummies Questions & Answers

Zipping files and sending email

Hi, I need to zip 4 files and send an email attaching the zipped files... Pls help.. Win ---------- Post updated at 10:49 AM ---------- Previous update was at 10:36 AM ---------- Hi, I need to convert 4 text files into xls,zip these 4 files and send an email attaching the... (2 Replies)
Discussion started by: win4luv
2 Replies

10. Shell Programming and Scripting

Using top command to email if process is exceeding 25% and sending an email alert if so

This is my first time writing a script and Im having some trouble, Im trying to use the top command to monitor processes and the amount of CPU usage they require, my aim is to get an email if a process takes over a certain percentage of CPU usage I tried grep Obviosly that hasnt worked, Any... (8 Replies)
Discussion started by: jay02
8 Replies
QToolTipGroup(3qt)														QToolTipGroup(3qt)

NAME
QToolTipGroup - Collects tool tips into related groups SYNOPSIS
#include <qtooltip.h> Inherits QObject. Public Members QToolTipGroup ( QObject * parent, const char * name = 0 ) ~QToolTipGroup () bool delay () const bool enabled () const Public Slots void setDelay ( bool ) void setEnabled ( bool ) Signals void showTip ( const QString & longText ) void removeTip () Properties bool delay - whether the display of the group text is delayed bool enabled - whether tool tips in the group are enabled DESCRIPTION
The QToolTipGroup class collects tool tips into related groups. Tool tips can display two texts: one in the tip and (optionally) one that is typically in a status bar. QToolTipGroup provides a way to link tool tips to this status bar. QToolTipGroup has practically no API; it is only used as an argument to QToolTip's member functions, for example like this: QToolTipGroup * grp = new QToolTipGroup( this, "tool tip relay" ); connect( grp, SIGNAL(showTip(const QString&)), myLabel, SLOT(setText(const QString&)) ); connect( grp, SIGNAL(removeTip()), myLabel, SLOT(clear()) ); QToolTip::add( giraffeButton, "feed giraffe", grp, "Give the giraffe a meal" ); QToolTip::add( gorillaButton, "feed gorilla", grp, "Give the gorilla a meal" ); This example makes the object myLabel (which you must supply) display (one assumes, though you can make myLabel do anything, of course) the strings "Give the giraffe a meal" and "Give the gorilla a meal" while the relevant tool tips are being displayed. Deleting a tool tip group removes the tool tips in it. See also Help System. MEMBER FUNCTION DOCUMENTATION
QToolTipGroup::QToolTipGroup ( QObject * parent, const char * name = 0 ) Constructs a tool tip group called name, with parent parent. QToolTipGroup::~QToolTipGroup () Destroys this tool tip group and all tool tips in it. bool QToolTipGroup::delay () const Returns TRUE if the display of the group text is delayed; otherwise returns FALSE. See the "delay" property for details. bool QToolTipGroup::enabled () const Returns TRUE if tool tips in the group are enabled; otherwise returns FALSE. See the "enabled" property for details. void QToolTipGroup::removeTip () [signal] This signal is emitted when a tool tip in this group is hidden. See the QToolTipGroup documentation for an example of use. See also showTip(). void QToolTipGroup::setDelay ( bool ) [slot] Sets whether the display of the group text is delayed. See the "delay" property for details. void QToolTipGroup::setEnabled ( bool ) [slot] Sets whether tool tips in the group are enabled. See the "enabled" property for details. void QToolTipGroup::showTip ( const QString & longText ) [signal] This signal is emitted when one of the tool tips in the group is displayed. longText is the extra text for the displayed tool tip. See also removeTip(). Property Documentation bool delay This property holds whether the display of the group text is delayed. If set to TRUE (the default), the group text is displayed at the same time as the tool tip. Otherwise, the group text is displayed immediately when the cursor enters the widget. Set this property's value with setDelay() and get this property's value with delay(). bool enabled This property holds whether tool tips in the group are enabled. This property's default is TRUE. Set this property's value with setEnabled() and get this property's value with enabled(). SEE ALSO
http://doc.trolltech.com/qtooltipgroup.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qtooltipgroup.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QToolTipGroup(3qt)
All times are GMT -4. The time now is 07:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy