04-23-2002
Hi
i found out how to do it
10x all
bye
9 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
What exactly does the SMS module do i Perl?
Can you send free sms messages from Perl ???? (1 Reply)
Discussion started by: perleo
1 Replies
2. IP Networking
actually i need this sms application ,to gain some knowledge in linux
platform.
if possible post to (1 Reply)
Discussion started by: parvathy
1 Replies
3. Shell Programming and Scripting
the mailx command can be used to send mails.
can i use the mailx command for sending sms to my mobile number in india??
Is it possible?
If yes how? If its not mailx then wht is the command for that? (6 Replies)
Discussion started by: vikasduhan
6 Replies
4. UNIX for Advanced & Expert Users
Hi,
Can any one tell me how to send SMS using Unix shell scripting. My scenario is whenever my count on particular tables exceeds beyond certain limit i need to trigger out an sms to the client. It could be better if there is no third party tools involved in it.
Thanks in advance... (9 Replies)
Discussion started by: sarojadevi
9 Replies
5. Shell Programming and Scripting
Hi friends,
I have a question related to UNIX mail issue. Let me explain the scenario. I am working in HP UNIX system and we are having some shell scripts those are already scheduled. Whenever the scripts are failed to run. I got an auto generated mail from UNIX administrator. To read the mail I... (4 Replies)
Discussion started by: rdhaprakasam
4 Replies
6. Solaris
how to configure sms alerts in SUN SPARC servers to notify file system , cpu, memory and disk errors. (2 Replies)
Discussion started by: phani.madiraju
2 Replies
7. Shell Programming and Scripting
I use the SMS script on this page:
http://www.prescriptionpc.com/TEST_newpage1.html#section=sms
The “functions” work fine, but after clicking “submit” and receiving the
“thank you” message, nothing happens.
I find it odd that I can send a text message to myself choosing my carrier (Virgin... (0 Replies)
Discussion started by: Bruce1969
0 Replies
8. Solaris
I would like assistance on a script that could send a text message to my mobile phone when I run a command and the text should be send only if a condition is met. I want to have a cron-job running every 10 minutes to check the system for overload conditons with a command:
more logfile.log | grep... (5 Replies)
Discussion started by: thinktank
5 Replies
9. UNIX for Advanced & Expert Users
Hello Folks,
I need to send the output from shell script to range of mobile phones based on their msisdn . Is there any open source solution could help me to do so from CentOS or redhat ?? (11 Replies)
Discussion started by: arm
11 Replies
LEARN ABOUT DEBIAN
ns_adprequest
Ns_Adp(3aolserver) AOLserver Library Procedures Ns_Adp(3aolserver)
__________________________________________________________________________________________________________________________________________________
NAME
Ns_AdpRegisterParser, Ns_AdpRequest - Create and use ADP parsers
SYNOPSIS
#include "ns.h"
int
Ns_AdpRegisterParser(char *extension, Ns_AdpParserProc *newParserProc)
int
Ns_AdpRequest(arg, arg)
_________________________________________________________________
DESCRIPTION
These functions register new ADP parsers and run ADP requests.
Ns_AdpRegisterParser(extension, newParserProc)
Registers a new, named ADP parser procedure with the name given in extension. You can tie a file extension to a particular named
parser in the nsd.tcl file. The newParserProc will be called when an ADP with the associated file extension needs to be parsed. If a
file extension is registered as an ADP in the nsd.tcl but no parser is associated with that file extension, the default ADP parser
is used.
The newParserProc must accept two arguments:
typedef void (Ns_AdpParserProc)(Ns_DString *out, char *in);
The ADP input is pointed to by in. Your parser must process the content of in and append the parsed output to out.
The output should be formatted as a series of concatenated "chunks". A chunk is a string of the format:
<type character><string><null>
where <type character> = 't' or 's'. A 't' means what follows is HTML and should be returned directly to the browser. An 's' means
what follows is Tcl and should be evaluated.
After the last chunk there should be an extra <null> character. For example, the "adp" parser will take a page like this:
This is a test page<%ns_puts hi%>The end<%ns_puts bye%>
And create this output:
"tThis is a test page sns_puts hi tThe end sns_puts bye "
Ns_AdpRequest(conn, file)
Parse and evaluate an ADP file.
SEE ALSO
nsd(1), info(n)
KEYWORDS
AOLserver 4.0 Ns_Adp(3aolserver)