purple-send-async(1) User Commands purple-send-async(1)NAME
purple-send-async - calls purple API functions using DBus.
SYNOPSIS
purple-send-async method-name [type1:value1] [type2:value2] ...
DESCRIPTION
This program calls purple API functions using DBus. As opposed to purple-send, it does not print the return value. If you wnat to print the
return value, use purple-send. This shell script just invokes dbus-send, see man dbus-send for how to specify the parameters.
OPTIONS
Use dbus-viewer to get the list of supported functions and their parameters.
Here are some examples:
/usr/bin/purple-send-async PurpleAccountsFindConnected string: string:prpl-jabber
/usr/bin/purple-send-async PurpleAccountsGetAll
/usr/bin/purple-send-async PurpleCoreQuit
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWgnome-im-client |
+-----------------------------+-----------------------------+
|Interface stability |Volatile |
+-----------------------------+-----------------------------+
SEE ALSO purple-remote(1), purple-send(1), purple-url-handler(1), attributes(5)
purple-send-async Manual, http://pidgin.im/
NOTES
Updated by Lei Ju, Sun Microsystems Inc., 2006, 2007.
SunOS 5.11 02 Apr 2008 purple-send-async(1)
Check Out this Related Man Page
ARRAY_DIFF_KEY(3) 1 ARRAY_DIFF_KEY(3)array_diff_key - Computes the difference of arrays using keys for comparisonSYNOPSIS
array array_diff_key (array $array1, array $array2, [array $...])
DESCRIPTION
Compares the keys from $array1 against the keys from $array2 and returns the difference. This function is like array_diff(3) except the
comparison is done on the keys instead of the values.
PARAMETERS
o $array1
- The array to compare from
o $array2
- An array to compare against
o $...
- More arrays to compare against
RETURN VALUES
Returns an array containing all the entries from $array1 whose keys are not present in any of the other arrays.
EXAMPLES
Example #1
array_diff_key(3) example
The two keys from the key => value pairs are considered equal only if (string) $key1 === (string) $key2 . In other words a strict
type check is executed so the string representation must be the same.
<?php
$array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
$array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
var_dump(array_diff_key($array1, $array2));
?>
The above example will output:
array(2) {
["red"]=>
int(2)
["purple"]=>
int(4)
}
NOTES
Note
This function only checks one dimension of a n-dimensional array. Of course you can check deeper dimensions by using
array_diff_key($array1[0], $array2[0]);.
SEE ALSO array_diff(3), array_udiff(3), array_diff_assoc(3), array_diff_uassoc(3), array_udiff_assoc(3), array_udiff_uassoc(3), array_diff_ukey(3),
array_intersect(3), array_intersect_assoc(3), array_intersect_uassoc(3), array_intersect_key(3), array_intersect_ukey(3).
PHP Documentation Group ARRAY_DIFF_KEY(3)
Hi
can somebody send me the code for compare two date and run a shell script. following is the code which i actully want but I am getting errors.
regard
Jamil
. /opt/home/rep/.profile
#!/bin/sh
VALUE=`sqlplus -silent rep/Ndk38f7@dw <<END
set pagesize 0 feedback off verify off... (5 Replies)
Hello Every one,
I have a situation where I want to sftp the files to third part server and I came up with below script where in I am using "expect" utility for sftping the files.
.....................................................
#!/usr/local/bin/expect --
#
set timeout 120
set... (7 Replies)
Hi Experts,
I am running solris 9. Sun-Fire 880.
How do i shutdowon the whole server using ALOM i.e sc> console.
If the server is down or somehow hang How do i Restart from sc>
//purple (6 Replies)
Hey, I've got a script using mailx to send an email to the user, but i'd like it if I could have it send the email sometime in the future, not right away. And by future, i mean like 1 minute in the future.
And I don't want it to halt the script in anyway. Perhaps there's a way to have it... (3 Replies)
howdy expert,
I have a big file arround 4 gb to ftp from a sun solaris server.
I would like to have script which will start copy the file though i close my working terminal.
regards,
purple (4 Replies)
Dear friends
I'm looking for a solution to log all commands that users do in my RedHat box, and send it out to other remote server,
Is there any guide for that
Thanks
---------- Post updated at 04:20 AM ---------- Previous update was at 03:47 AM ----------
I can think of something else
I... (7 Replies)
Hi, Guru
i had configure in my two server to send out the email.
One of the server able to send in the reasonable timing. but another not, it delay almost one day or two days but mostly not send at all.
below is the syslog when i try to send out the mail.
GOOD Server
Dec 28 11:29:39... (5 Replies)
Hi, I'd like to make a script where I can send a directory OR files as an argument, and compress them. My proble mis, I do know how to send a directory, but I do not know what to do if there are more than 1 file, I mean I can store the directory in $1, but how do I store 4 files? must I write $1,... (3 Replies)
Hi I have the following 'atd' batch script to send mail to a windows (outlook) system:
....
....
LESSOPEN=\|/usr/bin/lesspipe.sh\ %s; export LESSOPEN
G_BROKEN_FILENAMES=1; export G_BROKEN_FILENAMES
cd /root/bin || {
echo 'Execution directory inaccessible' >&2
exit 1
}... (3 Replies)
Hi,
Im looking to write a script to check if a file exists and if it doesnt then send an email out, Ive found the below code but I don't understand the ! in the if statement can anyone explain?
Any help will be much appreciated
#!/bin/bash
if
then
echo "File not exists" |... (10 Replies)
I want to send the content in same format as it is in file.
#!/bin/sh
cat /usr/test/abc > /usr/test/abc/file
if
then
MAILTO=test@yahoo.com
CONTENT="/usr/test/abc/file"
(
echo "Subject: TEST "
echo "MIME-Version: 1.0"
echo "Content-Type: text/html"
cat $CONTENT
) |... (7 Replies)
Hi ,
User claims that report refresh is taking longer time than usual time and asking us to disable async IO at OS level.
1 DB is running in this server
This is prod server
OS -- AIX
My question is would there be an impact to database and server if we disable async IO in OS?
is this... (4 Replies)
Hi,
Suppose I have a command:$ cmd1 | cmd2I need to send a message from cmd2 to cmd1 when I receive some a certain message from cmd1. How to do this?
I think that I have to know cmd1's PID and then in cmd2 send a message to this PID. How? (24 Replies)
Hello :)
I need help to automate an auto type "OK" to the below purple window:
command:
apt-get remove --purge resolvconf -y
Ouput:
https://image.noelshack.com/fichiers/2018/20/1/1526307688-capturea.png
I thought this below command could worked, but no :(
echo -en "\n" | apt-get... (5 Replies)