[SOLVED] Making mktime/strftime available to mawk


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users [SOLVED] Making mktime/strftime available to mawk
# 1  
Old 01-08-2014
[SOLVED] Making mktime/strftime available to mawk

I frequently use awk time functions and am switching some scripts over to mawk. I don't have the mktime or strftime functions in mawk, but it appears that there is a way, as explained here in "Time functions":

Moderator's Comments:
Mod Comment Please only cut-and-past links to man pages from our man pages.


Quote:
These are available on systems which support the corresponding C mktime and strftime functions:

mktime(specification)
strftime([format [, timestamp [, utc ]]])
systime()
So, simple question... How do I make support for C mktime and strftime functions available? Apologies if I've overlooked something simple, and many thanks in advance.
# 2  
Old 01-08-2014
Well, what is your system? does it have mktime and strftime?

The first thing that comes to mind is upgrading your version of mawk.
# 3  
Old 01-08-2014
Quote:
Originally Posted by Corona688
Well, what is your system? does it have mktime and strftime?

The first thing that comes to mind is upgrading your version of mawk.
Thanks for the reply. I'm running CentOS 6.0 x86_64. I'm very sorry to say I don't know how to determine whether it has mktime and strftime. How would I do that?

Also, while the unix.com man page library does have a mawk entry, it appears to differ from the one I linked, lacking at least the time-related entries I cited. Is it still ok to link externally in that case?

Again, thanks for the help.

Last edited by treesloth; 01-08-2014 at 07:12 PM..
# 4  
Old 01-09-2014
You have UNIX or Linux, therefore you have mktime and strftime. These functions are fairly standard.

You may have go upgrade your version of mawk to have them in that language.
# 5  
Old 01-09-2014
Quote:
Originally Posted by Corona688
You have UNIX or Linux, therefore you have mktime and strftime. These functions are fairly standard.

You may have go upgrade your version of mawk to have them in that language.
I think what I have is the newest version of mawk available for my system:

Code:
# mawk -W version
mawk 1.3.4 20120627

How might I get it to recognize the functions I need? Or, for that matter, how would I verify their availability on my system? Regular awk can use those functions. Does it call the same C functions that mawk apparently does? Thanks again for the responses.
# 6  
Old 01-09-2014
mawk does not have a strftime function, strftime is a built in function of gawk.
# 7  
Old 01-09-2014
Quote:
Originally Posted by Franklin52
mawk does not have a strftime function, strftime is a built in function of gawk.
that's what I'd thought as well, but the man page posted at the site where I got mawk indicated otherwise. I'd link it, but apparently that gets smooshed if I try.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk mktime(strftime(format,"6-FEB-2013 08:50:03.841")

I'm trying to use AWK to filter on some dates in a field by converting them to Unix Time. mktime(strftime(format,"6-FEB-2013 08:50:03.841")What is the proper format for my date strings as they appear in my database? My first thought is %d-%b-%Y %H:%M:%Sbut I see the following issues: %d is... (3 Replies)
Discussion started by: Michael Stora
3 Replies

2. UNIX for Advanced & Expert Users

Mawk printf %d maxes out at 2147483647

So, I do some file processing that generates very large numbers, such as total amount GETted from a busy web cluster in a month, etc. Mawk is awesome-- fast and easy. It's awk! But, there's a fatal flaw that I'd like to overcome. Apparently, %d maxes out at 2147483647. Here's sample output,... (11 Replies)
Discussion started by: treesloth
11 Replies

3. Shell Programming and Scripting

Help on awk strftime

cat file 41285.000034722223 41285.000567129631 41285.000069444446 41285.001122685186 41285.000092592592 41285.001620370371 41285.000138888892 41285.00340277778 41285.000185185185 41285.000405092593 41285.000196759262 41285.000856481478 41285.000208333331 41285.000717592593... (5 Replies)
Discussion started by: phpshell
5 Replies

4. Shell Programming and Scripting

Compute in milisecond by use of mktime

Hi, I want to calculate diff b/w these starttime and endtime with use of mktime. I need response time in milisecond. I am using mktime to get these times. last three digits are in milisecond Starttime 2013-04-03 08:54:19,989 End time 2013-04-03 08:54:39,389 (9 Replies)
Discussion started by: random_thoughts
9 Replies

5. UNIX for Dummies Questions & Answers

[Solved] Making a text based game

Hello, I am looking to make a text based game, that runs in the command window, or a window similar. I will only need to use 1 window. I read somewhere that there is libraries for this kind of thing? But I can't remember the name of them.. Can anyone point me in a direction? I will be... (2 Replies)
Discussion started by: murphy
2 Replies

6. Shell Programming and Scripting

[Solved] making each word of a line to a separate line

Hi, I have a line which has n number of words with separated by space. I wanted to make each word as a separate line. for example, i have a file that has line like i am a good boy i want the output like, i am a good (8 Replies)
Discussion started by: rbalaj16
8 Replies

7. Programming

strftime equivalent in c++

HI, i wish to convert a millsec value to a readable string format. the one option is to use strftime. However this is a bit costly (1-5 micros). is there a a faster way to do so with just string manipulation (Note i have the date object which has the time details but wish o avoid strftime) (2 Replies)
Discussion started by: wojtyla
2 Replies

8. Shell Programming and Scripting

MAWK does not support length(array)?

As Brendan O'Conner writes in this blog, mawk is near 8 times faster than gawk, so I am going to give mawk a go, but I got errors when trying to print the length of an array in mawk using length() function, is it not supported in mawk? or there's another way to get the length of an array in mawk? ... (3 Replies)
Discussion started by: kevintse
3 Replies

9. UNIX for Dummies Questions & Answers

mawk script to compare 2 files and report where they match

I have two files and would like a report of where they match. Example of file1: 1 1 1 2 2 2 13 14 15 4 4 4 15 16 17 100 102 1004 56 57 890 Example of file2: 2 2 2 16 10 11 45 22 35 13 14 15 1001 1002 3456 100 102 1004 (1 Reply)
Discussion started by: kenneth.mcbride
1 Replies

10. Shell Programming and Scripting

gawk and strftime()

Strange behaviour of the strftime() function from gawk (3.1.5): $ awk 'BEGIN{print strftime("%T", 3600)}' > 02:00:00 $ awk 'BEGIN{print strftime("%T", 0)}' > 01:00:00 Obviously something with DST but I can not figure out why? To me 3600 epoch seconds remains 01:00, DST or not. From... (2 Replies)
Discussion started by: ripat
2 Replies
Login or Register to Ask a Question