Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ns_localtime(3aolserv) [debian man page]

Ns_Reentrant(3aolserver)				   AOLserver Library Procedures 				  Ns_Reentrant(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_asctime, ns_ctime, ns_gmtime, ns_inet_ntoa, ns_localtime, ns_readdir, ns_strtok - library procedures SYNOPSIS
#include "ns.h" ns_asctime(arg, arg) ns_ctime(arg, arg) ns_gmtime(arg, arg) ns_inet_ntoa(arg, arg) ns_localtime(arg, arg) ns_readdir(arg, arg) ns_strtok(arg, arg) _________________________________________________________________ DESCRIPTION
These functions ... SEE ALSO
nsd(1), info(n) KEYWORDS
AOLserver 4.0 Ns_Reentrant(3aolserver)

Check Out this Related Man Page

Ns_Sock(3aolserver)					   AOLserver Library Procedures 				       Ns_Sock(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
Ns_BindSock, Ns_GetSockAddr, Ns_SockAccept, Ns_SockAsyncConnect, Ns_SockAsyncConnect2, Ns_SockBind, Ns_SockCloseLater, Ns_SockConnect, Ns_SockConnect2, Ns_SockListen, Ns_SockListenEx, Ns_SockPipe, Ns_SockSetBlocking, Ns_SockSetNonBlocking, Ns_SockStrError, Ns_SockTimedCon- nect, Ns_SockTimedConnect2, ns_pipe, ns_sockpair - library procedures SYNOPSIS
#include "ns.h" Ns_BindSock(arg, arg) Ns_GetSockAddr(arg, arg) Ns_SockAccept(arg, arg) Ns_SockAsyncConnect(arg, arg) Ns_SockAsyncConnect2(arg, arg) Ns_SockBind(arg, arg) Ns_SockCloseLater(arg, arg) Ns_SockConnect(arg, arg) Ns_SockConnect2(arg, arg) Ns_SockListen(arg, arg) Ns_SockListenEx(arg, arg) Ns_SockPipe(arg, arg) Ns_SockSetBlocking(arg, arg) Ns_SockSetNonBlocking(arg, arg) Ns_SockStrError(arg, arg) Ns_SockTimedConnect(arg, arg) Ns_SockTimedConnect2(arg, arg) ns_pipe(arg, arg) ns_sockpair(arg, arg) _________________________________________________________________ DESCRIPTION
These functions ... SEE ALSO
nsd(1), info(n) KEYWORDS
AOLserver 4.0 Ns_Sock(3aolserver)
Man Page

12 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

ls -e to find out File modification time in secs

Hi All, I would like to know the file modification time till seconds in Unix. So I tried ls -e and it worked fine. This Solaris 5.10 -rw-rw-r-- 1 test admin 22 Sep 12 11:01:37 2008 test_message But I am not able to run the same command in SOlaris 5.6 and also in AIX/HP Is there... (3 Replies)
Discussion started by: rahulkav
3 Replies

2. Shell Programming and Scripting

Perl - setting a variable ?

hi there, I have a question about a snippet of code i have which runs localtime() to convert the current date/time into a mysql happy format my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time); printf "%4d-%02d-%02d ... (4 Replies)
Discussion started by: rethink
4 Replies

3. Shell Programming and Scripting

Date in Solaris

Hi, I am working on date operations in perl. using following code, I am getting today date as per my required format. my $date1 = `date '+%m/%d/%Y'`; can I find day+1 date. (ie. If today is 12/01/2009 then I want to edit above code t find 12/02/2009) ---------- Post updated... (3 Replies)
Discussion started by: gentleDean
3 Replies

4. Shell Programming and Scripting

Date and time at runtime

run time I what to supply date and time (08/06/2010 23:00) to a variable in perl.How can I do that? (1 Reply)
Discussion started by: pdreddy34
1 Replies

5. Shell Programming and Scripting

Problem with date in perl!!

Hi All, I am facing an issue with perl.. I have a perl script that executes the stored procedure and puts the data in a file. In stord proc we have one date column also. In table from which it is fetching the data, date is in the form "14/03/2010 00:00:00.000" (DD/MM/YYYY). But when the perl... (4 Replies)
Discussion started by: abhisharma23
4 Replies

6. Shell Programming and Scripting

what is the default return type of localtime() in perl?

Hi, I have given like this to get the time of the sub routine. my $start = localtime(); print "\n start time: $start \n"; Output start time: Fri Apr 29 01:01:31 2011 I want to know what is the format of the time. I am not able to follow is is HH:MM:SS or MM:HH:SS os... (2 Replies)
Discussion started by: vanitham
2 Replies

7. Shell Programming and Scripting

Different types of Date format in perl

I want to know the different types of date format possible in perl. Eg: yyyymmdd, yymmdd etc...Is there any format like YMD? Where can i find the list of all possibilites? Thanks in advance (1 Reply)
Discussion started by: irudayaraj
1 Replies

8. Shell Programming and Scripting

Appending unix timestamp to every line of a statistical file

I have a statistical file populating every minute as below: 2011-11-11-1108 1955 891 2011-11-11-1109 2270 1049 2011-11-11-1110 1930 904 2011-11-11-1111 2030 931 2011-11-11-1112 1944 900 2011-11-11-1113 1922 875 Instead of having the date and time in the given format (2011-11-11-1113) I... (10 Replies)
Discussion started by: thinktank
10 Replies

9. Shell Programming and Scripting

perl script

HI All, Can any one explain me the below code.I need to know what is the exact meaning of data. INIT { my @times = localtime; $runDate = sprintf("%04d%02d%02d", 1900 + $times, 1 + $times, $times); # assume run today } (3 Replies)
Discussion started by: aish11
3 Replies

10. Shell Programming and Scripting

Epoch in Perl

Hi, Can anybody tell me how time is calculated in the below or what is actually being done here? Also can you explain in simple words about epoch time and why it is used? Thanks in advance (1 Reply)
Discussion started by: irudayaraj
1 Replies

11. Shell Programming and Scripting

Can't find string terminator "`" anywhere before EOF

// AIX 6.1 What I am trying to accomplish is to display the user name and the last login date and time in one line: for usrlist in $(cat alluser.txt) do $usrlist perl -e 'print scalar localtime `lsuser -a time_last_login $usrlist | awk -F '=' '{print $2}'`' done However, it... (8 Replies)
Discussion started by: Daniel Gate
8 Replies

12. Shell Programming and Scripting

How to get previous day from UNIX AIX?

Does anybody know how to get previous day on UNIX AIX? I tried TZ=XYZ+24 date '+%y%m%d' But it doesn't understand Thanks for contribution (6 Replies)
Discussion started by: digioleg54
6 Replies