ztouch

来自「一些关于HTTP协议处理的文档,还包括了gzip包(它是用来解压缩HTTP传送的」· 代码 · 共 16 行

TXT
16
字号
#! /usr/local/bin/perl# Set the time stamp of a gzip'ed file from that stored in the file.# usage: ztouch files...foreach $file (@ARGV) {    open (FILE, $file);    read (FILE, $_, 8);    ($magic, $method, $flags, $time) = unpack ("A2C2V", $_);    if ($magic eq "\037\213") {	utime ($time, $time, $file);    }    else {	warn "$file is not compressed with gzip!\n";    }}

⌨️ 快捷键说明

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