Time in seconds on AIX 4.3.2.0


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Time in seconds on AIX 4.3.2.0
# 1  
Old 02-22-2017
Time in seconds on AIX 4.3.2.0

Hi to everybody
again i Need your help, i wasting hours but can't find a solutuin for my Problem. I am not an expert with AIX script programming.
I have a csh script and i need the time in seconds but since i have an old AIX the Option -%s doesnot exist with the date command. I seach in Google but what i found was most use perl --- ok next Problem i don't know perl and how can i use perl commands inside my csh script , or is there any easy way to get time time in my script ?

Thanks in advance
# 2  
Old 02-22-2017
You can try my general purpose date script which is a GNU-date-alike written in Perl, which ought to support %s. It can also do date math.

To use it, put it in a text file and set it executable, you should be able to run it. You may need to adjust the path of #!/usr/bin/perl to wherever perl happens to be on your system.
These 2 Users Gave Thanks to Corona688 For This Post:
# 3  
Old 02-23-2017
Hi Corona688,

thanks a lot for the link to your great date script. but i just looking for a one line command inside the csh Shell which can transfer the value of time() to a varieable in the script. Your code offer many different Options which i don't neednow , your Program are bigger than my script .
Mabe you have a solution for me to get seconds from perl time() into a variable in my csh script

Thanks a lot for your support
# 4  
Old 02-23-2017
try this to get epoch time:
Code:
nawk 'BEGIN {srand();time=srand();print time}' </dev/null

This User Gave Thanks to vgersh99 For This Post:
# 5  
Old 02-23-2017
Wouldn't this suffice:
Code:
awk 'BEGIN {print srand()}'
1487859688

?
These 2 Users Gave Thanks to RudiC For This Post:
# 6  
Old 02-23-2017
If i remember AIX 4.3.2 correctly (sorry, but is been a long time) there should be the "%T" option which displays the (24h-)time in the format "HH:MM:SS".

Check this with the man page of date i have no way of accessing man pages for this (probably pre-2000) version.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 7  
Old 02-23-2017
Code:
perl -e 'print time(), "\n";'

This User Gave Thanks to Corona688 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting seconds to time

I have a list of time spans in seconds, and want to compute the time span as hh:mm:nn I am coding in bash and have coded the following. However, the results are wrong as "%.0f" rounds the values. Example: ftm: 25793.5 tmspan(hrs,min,sec): 7.16 429.89 25793.50 hh: 7 mm: 10 ss:... (2 Replies)
Discussion started by: kristinu
2 Replies

2. Shell Programming and Scripting

Get how much time process has been running in seconds

I use this command to get the time elapsed for a process ps -eo pid,pcpu,pmem,user,args,etime,cmd --sort=start_time | grep perl It gives in format 19990 0.0 0.0 user /usr/bin/php 5-09:58:51 /usr/bin/php I need in seconds. Please use CODE tags for sample input and output as well... (2 Replies)
Discussion started by: anil510
2 Replies

3. Shell Programming and Scripting

Elapsed time in seconds in awk

I am trying to get the ellapsed time in seconds in the body of the awk script. I use unix date to get the time. It works in BEGIN {} but not in the body {} of awk. Any ideas? $ cat a BEGIN { "date +%s" | getline x print x } { "date +%s" | getline y print y } $ echo "one line" |... (3 Replies)
Discussion started by: arturas123
3 Replies

4. Shell Programming and Scripting

Get Current Time in Seconds Perl

hi guys, i need to know how to get the current date/time in seconds and i want to be able to do this in a one liner. like say for instance, if want to get what the time is right now, i'll issue a command like this: ## perl -e ' print scalar(localtime(time + 0)), "\n"' Tue Jul 13 17:45:50... (4 Replies)
Discussion started by: SkySmart
4 Replies

5. Shell Programming and Scripting

Time difference in seconds

date1=$(date +"%H:%M:%S") date2=$(date +"01:00:54") diff=$date2-$date1 echo $diff How to get the time difference in seconds. (4 Replies)
Discussion started by: sandy1028
4 Replies

6. Shell Programming and Scripting

File creation time in seconds

Hi All, Cany any one help me in solving this.. Problem statement: I have a requirement to find the time from which there are no files created in a given directory. For this I am assuming that I need to get the file creation time in seconds, then the current time in seconds using `date +%s`.... (7 Replies)
Discussion started by: chary
7 Replies

7. UNIX for Advanced & Expert Users

Time Difference in seconds

It is required to calculate time difference in seconds between epoch time (19700101 00:00:00) and any given date time (e.g. 20010214 14:30:30). Is there any command in unix to get it? Thanks in adv. (1 Reply)
Discussion started by: k_bijitesh
1 Replies

8. Shell Programming and Scripting

how to display time in minutes n seconds...

Hi all, may i know how to display time in minutes and seconds(may be milliseconds and even smaller that ) in shell scripts.... (1 Reply)
Discussion started by: santy
1 Replies

9. AIX

Unable to display the date-time in seconds on AIX

Hi, In unix the command "date +%s" displays the date-time in seconds since â00:00:00 1970-01-01 UTCâ (a GNU extension) when executed on unix: -sh-2.05b$ date +%s 1152092690 I tried with all the format control output but unable to display the date-time in seconds i,e as in unix format. Can... (6 Replies)
Discussion started by: me_haroon
6 Replies

10. UNIX for Dummies Questions & Answers

getting time in mili seconds

hi all UNIX Gurus, this is my first post...so i posting this with great expectations:o...hoping to get the similar replies... my question is.... need to get timestamp with millisecond in UNIX. Date command gives Year,month day, hour,minute and second but it does not give millisecond. Any... (5 Replies)
Discussion started by: Bhups
5 Replies
Login or Register to Ask a Question