10 More Discussions You Might Find Interesting
1. Red Hat
Hi, I am using CENTOS and for now, I am not able to install or to configure the istat command on Linux. So, is there a way to do the same that the shell is doing below, but not using istat command? I would appreciate any help on it.
#!/bin/sh
HOUR=0
MONTHN=0
if
then
:
else
... (10 Replies)
Discussion started by: brjohnsmith
10 Replies
2. UNIX and Linux Applications
ssmtp has been running well under Kubuntu 12.04.1 for plain text messages. I would like to send html messages with ssmtp -t < /path/to/the/message.txt, but I cannot seem to get the message.txt file properly formatted. I have tried various charsets,
Content-Transfer-Encoding, rearranging the... (0 Replies)
Discussion started by: Ronald B
0 Replies
3. Programming
Hi guys,
I'm in a job of converting a restful webservice to soap. Tool for convertation uses XQuery.
Now i need to convert a message like this:
{
"firstName": "John",
"midName": null,
"lastName": "Smith",
"married": false,
"address": {
"streetAddress": "21 2nd... (5 Replies)
Discussion started by: tien86
5 Replies
4. Shell Programming and Scripting
I would like to determine if a file is older than a particular date. I found that istat will let me see the date and time of a file older than a year, but I need to change the format. Could anyone help me reformat the following date to a variable (a one liner would be great).
Output from istat -... (1 Reply)
Discussion started by: oldman2
1 Replies
5. Programming
Hii can anyone pls tell how to limit the max no of message in a posix message queue. I have made changes in proc/sys/fs/mqueue/msg_max
But still whenever i try to read the value of max. message in the queue using attr.mq_curmsgs (where struct mq_attr attr) its giving the default value as 10.... (0 Replies)
Discussion started by: mohit3884
0 Replies
6. UNIX for Advanced & Expert Users
I got the command :
istat filename
shows all the file details like owner and group name.
But
i want to know, who has accessed the file last time.
As istat shows the name of owner of that file and name of the group.
istat does lots of my work but i want to know who has accessed my file... (2 Replies)
Discussion started by: varungupta
2 Replies
7. UNIX for Advanced & Expert Users
I got the command :
istat filename
shows all the file details like owner and group name.
But
i want to know, who has accessed the file last time.
As istat shows the name of owner of that file and name of the group.
istat does lots of my work but i want to know who has accessed my file... (0 Replies)
Discussion started by: varungupta
0 Replies
8. UNIX for Dummies Questions & Answers
I have a regular user account in one of the solaris machines.
I have been trying to display a message when I log on by modifying my .profile file e.g.
+-------------+
.profile
+--------------+
echo "Welcome <user>"
echo "Today is: "`date`
etc. etc.
The message keeps on popping... (0 Replies)
Discussion started by: run_time_error
0 Replies
9. UNIX for Dummies Questions & Answers
Hello
I installed solaris 9, but when I reboot the box, I got this message
WARNING:add_spec:No major number for mpt
WARNING:add_spec:No major number for mpt
WARNING:add_spec:No major number for mpt
WARNING:add_spec:No major number for mpt
WARNING:add_spec:No major number for mpt
... (2 Replies)
Discussion started by: lo-lp-kl
2 Replies
10. UNIX for Dummies Questions & Answers
Hi,
I have a SCO Openserver 5.0.5 server running RAID5 on the hp NETRAID-1M controller and it works just fine.
However, I cannot add a tape drive in. The standard SCSI card is a Symbios and I am using the 'slha' driver, but the system doesnt see the adaptor at SCO startup. The adaptor and... (1 Reply)
Discussion started by: christate
1 Replies
catgets(3) Library Functions Manual catgets(3)
NAME
catgets - Retrieves a message from a catalog
LIBRARY
Standard C Library (libc)
SYNOPSIS
#include <nl_types.h>
char *catgets(
nl_catd cat_descriptor,
int set_number,
int message_number,
const char *string);
STANDARDS
Interfaces documented on this reference page conform to industry standards as follows:
catgets(): XSH5.0
Refer to the standards(5) reference page for more information about industry standards and associated tags.
PARAMETERS
Specifies a catalog descriptor that is returned by the catopen() function. Identifies a message set. Identifies a message. In combina-
tion, the set_number and message_number identify the particular message in the catalog to retrieve. Specifies the default message string
to be returned if catgets() cannot retrieve the message from the catalog.
DESCRIPTION
The catgets() function retrieves a message from a catalog after a successful call to the catopen() function. If the catgets() function
finds the specified message, a pointer to the message text is returned. Otherwise, the function returns a pointer to the default message
string.
NOTES
The returned cat_descriptor pointer is not valid once the catclose() function has been called for that cat_descriptor.
RETURN VALUES
On successful completion, the catgets() function returns a pointer to the null terminated message string retrieved from the catalog. Oth-
erwise, the function returns a pointer to string and sets errno to indicate the error.
ERRORS
If the catgets() function fails, it sets errno to one of the following values for the reason specified: [Tru64 UNIX] Search permission is
denied for a component of the path to the message catalog or read permission is denied for the catalog.
[Tru64 UNIX] This error may occur on the first invocation of catgets(). See catopen(3) for more information. The cat_descriptor
value does not identify a message catalog that is open for reading. The cat_descriptor argument is corrupted. [Tru64 UNIX] The
process limit for open file descriptors per process has already reached OPEN_MAX.
[Tru64 UNIX] This error may occur on the first invocation of catgets(). See catopen(3) for more information. [Tru64 UNIX] The
system limit for open file descriptors has been reached. [Tru64 UNIX] The message catalog does not exist.
[Tru64 UNIX] This error may occur on the first invocation of catgets(). See catopen(3) for more information. [Tru64 UNIX] Insuf-
ficient memory is available.
[Tru64 UNIX] This error may occur on the first invocation of catgets(). See catopen(3) for more information. The message identi-
fied by set_number and message_number is not in the catalog.
RELATED INFORMATION
Functions: catopen(3), catclose(3)
Commands: dspcat(1), dspmsg(1), extract(1), gencat(1), mkcatdefs(1), strextract(1), strmerge(1), trans(1)
Others: i18n_intro(5), l10n_intro(5), standards(5)
Writing Software for the International Market delim off
catgets(3)