?? now.pl
字號:
#!/usr/bin/perl# $Id$## 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -