-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathupdateDateString.pl
61 lines (48 loc) · 2.12 KB
/
updateDateString.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/perl
###################################################################################
# This script updates date string like "! Last modified: 2010-04-06 14:03:42 JST" #
# #
# To add or update date string, run the script like this: #
# #
# perl updateDateString.pl subscription.txt #
# #
# Note: your subscription file should be saved in UTF-8 encoding, otherwise #
# the generated checksum might be incorrect. #
# #
###################################################################################
use strict;
use warnings;
use Time::Piece qw(localtime);
die "Usage: $^X $0 subscription.txt\n" unless @ARGV;
my $file = $ARGV[0];
my $data = readFile($file);
my $time = localtime();
#my $strDateTime = $time->strftime("%d %b %Y %H:%M JST");
my $strDateTime = $time->strftime("%F %R %z");
my $strVersion = $time->strftime("%Y%m%d%H%M");
die "[ERR] Failed to Generate DateTime String!" unless $strDateTime;
die "[ERR] Failed to Generate Version String!" unless $strVersion;
# Replace already existing "! Last modified: DATE TIME JST"
$data =~ s/^.*!\s*Last\s+modified[\s\-:]+([\w\+\/=]+).*$/! Last modified: $strDateTime/gmi;
$data =~ s/^.*!\s*Version[\s\-:]+([\w\+\/=]+).*$/! Version: $strVersion/gmi;
writeFile($file, $data);
######## Sub START ########
sub readFile
{
my $file = shift;
open(local *FILE, "<", $file) || die "Could not read file '$file'";
binmode(FILE);
local $/;
my $result = <FILE>;
close(FILE);
return $result;
}
sub writeFile
{
my ($file, $contents) = @_;
open(local *FILE, ">", $file) || die "Could not write file '$file'";
binmode(FILE);
print FILE $contents;
close(FILE);
}
######## Sub END ########