⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log2date.pl

📁 A NTP client is a program which user can synchronize the time with time server assigned. This prog
💻 PL
字号:
# Adds human-readable UTC stamps at the end of# ntpclient log fileswhile (<>) {	if (/^ *#/) {		print $_;	} else {		chomp();		@A=split();		# 15020: mysterious, got rid of it in ntpclient_2003		# 25567:  Jan 1970 - Jan 1900		$second = ($A[0]-25567)*86400+$A[1];		$ss = gmtime($second);		print "$_ $ss\n";	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -