Sponsored Content
Top Forums Shell Programming and Scripting Sending message to a mobile number through UNIX Post 302909903 by Sharma331 on Monday 21st of July 2014 09:52:30 AM
Old 07-21-2014
Sending message to a mobile number through UNIX

Is it possible to add Pager Notification to mailx command??
Or by any other mean.

just want to specify that by Pager i mean a message to the mobile number.

Suppose i have following condition

Code:
If [[ $a -eq $b ]];then
send a message to 9999999999
else
no message to be sent
fi

Is it possible?
I have an urgent requirement for this!!

Last edited by rbatte1; 07-21-2014 at 11:03 AM.. Reason: Code tags
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

Sending a message to a user when password will be expired

Hi, Does anyone have a script (for AIX) that sends a message to a user that his password will be expired within 5 days for ex. Thanks (1 Reply)
Discussion started by: Diederd
1 Replies

2. Shell Programming and Scripting

sending message to terminal

hi all i have script #!/bin/bash cd /usr3/prod grep ERROR /usr3/prod/ind.log > /usr3/prod/ind_err.log if test -s /usr3/prod/ind_err.log then echo "error during process" else echo "process succeed" fi i want that this message(echo) will be display one time at the top of the screen... (5 Replies)
Discussion started by: naamas03
5 Replies

3. Shell Programming and Scripting

Problem while sending message and attachment with mailx

Hi All, I am trying to send a mail with an attachment and message. Following command I am using. (cat <messagefile> ; uuencode <attachmentfile> <attachmentfile>)|mailx -s"Subject" dave@email.com In the received mail, message body is appearing fine. But attachment is not coming. Rather... (2 Replies)
Discussion started by: nihar.dutta
2 Replies

4. UNIX for Dummies Questions & Answers

Sending a structure through a message queue

Hi, I browsed thru the previous posts and couldnt find a solution for my problem. Hence I decided to post it. I have a buffer array that I want to send thru a message queue. The array consists of a header structure and a payload structure memcopied to it. When I print the contents of the... (1 Reply)
Discussion started by: zeebie
1 Replies

5. Solaris

Problem in Sending Arabic message in Unix

I have developed an application in java which sends arabic as well as english messages(SMS). First I deployed the same on windows machine and it sends the messages in both the languages. Due to some performance issue thought of migrating to UNIX. On the unix testing machine, when i tested it out,... (5 Replies)
Discussion started by: jacobkuncheria
5 Replies

6. Shell Programming and Scripting

Sending email message in colour and bold letter

The code echo -e "\033[34m Test \033[0m Mail" when i execute this command line i get proper output but when i mail the output of this command through sendmail it doesn't appear. Basically I want to send email message in diffrent colours, bold letter using shell script. (2 Replies)
Discussion started by: baps
2 Replies

7. Shell Programming and Scripting

sending multiple files along with mail message using uuencode

Hi, I have a requirement to send a mail with multiple files attached to it and along with the text message in the mail. I am trying sumthing like below but it only sends me the text message and no files attached to the mail. ---------------------------------------- ( uuencode file1... (1 Reply)
Discussion started by: sachinkl
1 Replies

8. Shell Programming and Scripting

Message Body while sending an email

I am making use of the following code to display the results of my txt file in an email: mail -s 'Count Validation Test Comparison Results' Ronit@XYZ.com < Count_Validation_Results_`date +%m%d%Y`.txt Email Output: ----------Query 1 Count Validation Results-------- Source count is 4 Target... (7 Replies)
Discussion started by: ronitreddy
7 Replies

9. Red Hat

Sending email with message body and attachment

Hello experts!! I am trying to send an email with message body and attachment.but i am getting any one like message body or attachment. I tried below command: (echo "subject:test";echo "MIME-Version: 1.0";echo "content-transfer-encoding:base 64";echo "content-type:txt;name=test.txt";cat... (2 Replies)
Discussion started by: Devipriya Ch
2 Replies
IO::Pager(3)						User Contributed Perl Documentation					      IO::Pager(3)

NAME
IO::Pager - Select a pager and pipe text to it if destination is a TTY SYNOPSIS
# Select an appropriate pager and set the PAGER environment variable use IO::Pager; # Optionally, pipe output to it { # TIMTOWTDI, not an exhaustive list but you can infer the others my $token = IO::Pager::open *STDOUT; # Unbuffered is default subclass my $token = new IO::Pager *STDOUT, 'Unbuffered'; # Specify subclass my $token = IO::Pager::Unbuffered::open *STDOUT; # Must 'use' class! my $token = new IO::Pager::Unbuffered *STDOUT; # Must 'use' class! print <<" HEREDOC" ; ... A bunch of text later HEREDOC # $token passes out of scope and filehandle is automagically closed } { # You can also use scalar filehandles... my $token = IO::Pager::open($FH) or warn($!); print $FH "No globs or barewords for us thanks! "; } { # ...or an object interface my $token = new IO::Pager::Buffered; $token->print("OO shiny... "); } DESCRIPTION
IO::Pager can be used to locate an available pager and set the PAGER environment variable (see "NOTES"). It is also a factory for creating I/O objects such as IO::Pager::Buffered and IO::Pager::Unbuffered. IO::Pager subclasses are designed to programmatically decide whether or not to pipe a filehandle's output to a program specified in PAGER. Subclasses may implement only the IO handle methods desired and inherit the remainder of those outlined below from IO::Pager. For anything else, YMMV. See the appropriate subclass for implementation specific details. METHODS
new( [FILEHANDLE], [SUBCLASS] ) Almost identical to open, except that you will get an IO::Handle back if there's no TTY to allow for IO::Pager agnostic programming. open( [FILEHANDLE], [SUBCLASS] ) Instantiate a new IO::Pager, which will paginate output sent to FILEHANDLE if interacting with a TTY. Save the return value to check for errors, use as an object, or for implict close of OO handles when the variable passes out of scope. FILEHANDLE You may provide a glob or scalar. Defaults to currently select()-ed FILEHANDLE. SUBCLASS Specifies which variety of IO::Pager to create. This accepts fully qualified packages IO::Pager::Buffered, or simply the third portion of the package name Buffered for brevity. Defaults to IO::Pager::Unbuffered. Returns false and sets $! on failure, same as perl's "open". PID Call this method on the token returned by "open" to get the process identifier for the child process i.e; pager; if you need to perform some long term process management e.g; perl's "waitpid" You can also access the PID by numifying the instantiation token like so: my $child = $token+0; close( FILEHANDLE ) Explicitly close the filehandle, this stops any redirection of output on FILEHANDLE that may have been warranted. This does not default to the current filehandle. Alternatively, you may rely upon the implicit close of lexical handles as they pass out of scope e.g; { IO::Pager::open local *RIBBIT; print RIBBIT "No toad sexing allowed"; ... } #The filehandle is closed to additional output { my $token = new IO::Pager::Buffered; $token->print("I like trains"); ... } #The string "I like trains" is flushed to the pager, and the handle closed binmode( FILEHANDLE ) Used to set the I/O layer a.k.a. discipline of a filehandle, such as ':utf8' for UTF-8 encoding. print ( FILEHANDLE LIST ) print() to the filehandle. printf ( FILEHANDLE FORMAT, LIST ) printf() to the filehandle. syswrite( FILEHANDLE, SCALAR, [LENGTH], [OFFSET] ) syswrite() to the filehandle. ENVIRONMENT
PAGER The location of the default pager. PATH If the location in PAGER is not absolute, PATH may be searched. See "NOTES" for more information. FILES
IO::Pager may fall back to these binaries in order if PAGER is not executable. /etc/alternatives/pager /usr/local/bin/less /usr/bin/less /usr/bin/more See "NOTES" for more information. NOTES
The algorithm for determining which pager to use is as follows: 1. Defer to PAGER If the PAGER environment variable is set, use the pager it identifies, unless this pager is not available. 2. Usual suspects Try the standard, hardcoded paths in "FILES". 3. File::Which If File::Which is available, use the first pager possible amongst "less", "most", "w3m", "lv", "pg" and more. 4. more Set PAGER to "more", and cross our fingers. Steps 1, 3 and 4 rely upon the PATH environment variable. SEE ALSO
IO::Pager::Buffered, IO::Pager::Unbuffered, IO::Pager::Page, IO::Page, Meta::Tool::Less AUTHOR
Jerrad Pierce <jpierce@cpan.org> Florent Angly <florent.angly@gmail.com> This module was inspired by Monte Mitzelfelt's IO::Page 0.02 COPYRIGHT AND LICENSE
Copyright (C) 2003-2012 Jerrad Pierce o Thou shalt not claim ownership of unmodified materials. o Thou shalt not claim whole ownership of modified materials. o Thou shalt grant the indemnity of the provider of materials. o Thou shalt use and dispense freely without other restrictions. Or, if you prefer: This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.0 or, at your option, any later version of Perl 5 you may have available. perl v5.18.2 2013-04-06 IO::Pager(3)
All times are GMT -4. The time now is 04:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy