Sponsored Content
Top Forums Shell Programming and Scripting Mtime or the equivalent for HP-UX Post 303031234 by jim mcnamara on Sunday 24th of February 2019 08:53:28 PM
Old 02-24-2019
Chubler_XL - yes and no.

One problem - lpstat -o reports data from the print queue acceptance time, not the mtime of a file. In other words, you could send a 10 year old file to a print queue and acceptance time would be in the last few seconds. Try it if you have an HP-UX box handy.

Perl definitely is an option, but IIRC timelocal (and some other) and other date time .pm files were not on the last HP-UX boxes I worked on ( 11i v3 (B.11.31), 2007-02-01 ) as default installed items in perl.

Adding new perl modules requires going to cpan and downloading, then creating library directories and environment variables. And then coding. No biggie. But it is a system change.

My effort was simply in C because this was just a quick effort for me. And hoping it was useful. The missing year number part was what got me interested.
These 2 Users Gave Thanks to jim mcnamara For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

mtime vs ctime

:D i have a slight problem and would appreciate if someone could clarify the confusion.. i use find alot and so far i have done ok.. but it just struck me a couple of days ago that I am not quite sure what the difference between the modification time and the change time as in ctime and mtime and... (3 Replies)
Discussion started by: moxxx68
3 Replies

2. UNIX for Dummies Questions & Answers

find . -mtime

...what am i doing wrong?? I need to find all files older than 30 days and delete but I can't get it to pull details for ANY + times. The file below has a time stamp which is older than 1 day, however if I try and select it using any of the -time flags it just doesn't see it. (the same thing... (1 Reply)
Discussion started by: topcat8
1 Replies

3. UNIX for Dummies Questions & Answers

mtime help!!!!!

thank you for the help. (2 Replies)
Discussion started by: scooter17
2 Replies

4. Shell Programming and Scripting

mtime

hi, :) consider the following statement find . -type f -mtime -1 -print here what is the use of -1 option. any help? cheers RRK (7 Replies)
Discussion started by: ravi raj kumar
7 Replies

5. UNIX for Dummies Questions & Answers

-mtime +30

Hello, Can someone help me to understand the following: find /test/rman/ -mtime +30 -exec rm '{}' \; What does -mtime +30 mean? Thanks! (1 Reply)
Discussion started by: Blue68
1 Replies

6. Shell Programming and Scripting

mtime

Hi, I've some files of some past days and everyday some new files are also getting added to the same. Now how can i use mtime to get the files of the current date i.e if i want the files of 25th feb 2009 and if im finding the files on 25th 12:10 am then i should only get the files after... (4 Replies)
Discussion started by: ss_ss
4 Replies

7. UNIX for Dummies Questions & Answers

(find) mtime vs. (unix) mtime

Hi I've made some test with perl script to learn more about mtime... So, my question is : Why the mtime from findfind /usr/local/sbin -ctime -1 -mtime -1 \( -name "*.log" -o -name "*.gz" \) -print are not the same as mtime from unix/linux in ls -ltr or in stat() function in perl : stat -... (2 Replies)
Discussion started by: hiddenshadow
2 Replies

8. Shell Programming and Scripting

find -mtime +7

Dear all, find $ADMIN_DIR/$SID/arch/ -name '*.gz' -mtime +7 -exec rm {} \; is it retaining 7 days OR 8 days .gz files ? Thanks Prakash (10 Replies)
Discussion started by: prakashoracledb
10 Replies

9. Red Hat

-mtime command

Hello, what this command do. find /oracle/u01/app/oracle/admin/rdz/udump/ -name "*.trc" -mtime +1 Thanks, Umair (1 Reply)
Discussion started by: umair
1 Replies

10. Shell Programming and Scripting

Mtime issue

Dear all, i am trying to find all files created one day before, for example 26 October, and i am using this command: find . -type f -daystart -mtime 1 This command in fact lists all files created on 26 October, but the files between midnight 00:00 26 Oct and 01:00 26 Oct, does not shown... (4 Replies)
Discussion started by: arrals_vl
4 Replies
Weather::Com::DateTime(3pm)				User Contributed Perl Documentation			       Weather::Com::DateTime(3pm)

NAME
Weather::Com::DateTime - date and time class SYNOPSIS
#!/usr/bin/perl -w use Weather::Com::DateTime; my $gmt_offset = 1; # e.g. for Germany in winter my $datetime = Weather::Com::DateTime->new($gmt_offset); $datetime->set_lsup('02/25/05 11:21 PM Local Time'); print "This is the date '02/25/05 11:21 PM' in Germany: "; print "Epoc: ", $datetime->epoc(), " "; print "GMT (UTC): ". gmtime($datetime->epoc()). " "; print "My local time: ". localtime($datetime->epoc()). " "; print "And finally German time: ", $datetime->time(), " o'clock at ", $datetime->date(), " "; DESCRIPTION
Weather::Com::DateTime objects are used to encapsulate a date or time provided by the OO interface (e.g. localtime, sunrise, sunset, etc.). This is done because there are many ways to use a date or time and to present it in your programs using Weather::Com. This class provides some predefined formats for date and time but also enables you to easily define your own ones. These objects always represent the local time of a Weather::Com::Location object. That is, if you have a location object for New York City and your server running the weather script is located in Los Angeles, for example, this line print "Sunrise at: ", $location->sunrise()->time(), " "; will print the time of sunrise (in 24h format) in EST and not corresponding to the timezone of Los Angeles! If you'd like to now what this is in GMT you could call print "Sunrise at: ". gmtime($location->sunrise()->epoc()). " "; or if you want to know when the sun rises at the location in your servers local time than just call print "Sunrise at: ". localtime($location->sunrise()->epoc()). " "; There are two ways to get your own date or time format: 1. You use the "formatted()" method and provide a format string to it. 2. If you'd like to define your own "date()" or "time()" method, simply change the corresponding methods. What you can change in which way without destroying the whole class, is described in section INTERFACE. CONSTRUCTOR
You usually would not construct an object of this class yourself. This is implicitely done when you call one of the OO interfaces date or time methods. The constructor can take a GMT offset in positive or negative hours. If one calls the constructor without any GMT offset, we assume you want a GMT object. METHODS
epoc(epoc seconds) With this method you can set the date and time using epocs (GMT) directly. It returns the currently set epoc seconds (GMT). formatted(format) This method returns a date or time formatted in the way you ask for and corresponding to the local time of the parent object. The "format" you provide to this method has to be a valid Time::Format format. For details please refer to Time::Format. set_date(date) With this method one can set the date of the object using an input format like "Feb 13" which is the 13th of february of the current year. Using this method, the time is set to 00:00. The year is the current one. set_time(time) With this method one can set the time of the object using an input format like "8:30 AM". The date is set to the current date of the host the script is running on. set_lsup(lsup) With this method one can set the date of the object using the weather.com's special last update format that is like "2/12/05 4:50 PM Local Time". date() Returns the date in the format "1. February 2005". time() Returns the time in the format "22:15". time_ampm() Returns the time in the format "10:15 PM". weekday() Returns the day of week with like "Wednesday". day() Returns the day in month. month() Returns the name of the month. mon() Returns the number of the month year() Returns the year (4 digits). AUTHOR
Thomas Schnuecker, <thomas@schnuecker.de> COPYRIGHT AND LICENSE
Copyright (C) 2004-2007 by Thomas Schnuecker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The data provided by weather.com and made accessible by this OO interface can be used for free under special terms. Please have a look at the application programming guide of weather.com (<http://www.weather.com/services/xmloap.html>)! perl v5.8.8 2007-07-09 Weather::Com::DateTime(3pm)
All times are GMT -4. The time now is 04:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy