now.pl
来自「Windows上的精简Linux系统」· PL 代码 · 共 23 行
PL
23 行
#!/usr/bin/perl# $Id: now.pl,v 1.5 1999/09/17 07:28:45 hpa Exp $## 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;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?