summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/now.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/now.pl')
-rw-r--r--contrib/syslinux-4.02/now.pl21
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/now.pl b/contrib/syslinux-4.02/now.pl
new file mode 100644
index 0000000..a3b5a79
--- /dev/null
+++ b/contrib/syslinux-4.02/now.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/perl
+#
+# Print the time (possibly the mtime of a file) as a hexadecimal integer
+# If more than one file, print the mtime of the *newest* file.
+#
+
+undef $now;
+
+foreach $file ( @ARGV ) {
+ ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,
+ $ctime,$blksize,$blocks) = stat($file);
+ if ( !defined($now) || $now < $mtime ) {
+ $now = $mtime;
+ }
+}
+
+if ( !defined($now) ) {
+ $now = time;
+}
+
+printf "0x%08x\n", $now;