-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathuncode
executable file
·136 lines (108 loc) · 1.73 KB
/
uncode
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/perl
# vim:ft=perl:
# abstract: transform ascii data to unicode chars
use vars qw($VERSION);
my $APP = '';
$VERSION = '0.001';
use strict;
my $map = {
a => "a",
b => "b",
c => "c",
d => "d",
e => "e",
f => "f",
g => "g",
h => "h",
i => "i",
j => "j",
k => "k",
l => "l",
m => "m",
n => "n",
o => "o",
p => "p",
q => "q",
r => "r",
s => "s",
t => "t",
u => "u",
v => "v",
w => "w",
x => "x",
y => "y",
z => "z",
A => "A",
B => "B",
C => "C",
D => "D",
E => "E",
F => "F",
G => "G",
H => "H",
I => "I",
J => "J",
K => "K",
L => "L",
M => "M",
N => "N",
O => "O",
P => "P",
Q => "Q",
R => "R",
S => "S",
T => "T",
U => "U",
V => "V",
W => "W",
X => "X",
Y => "Y",
Z => "Z",
0 => "0",
1 => "1",
2 => "2",
3 => "3",
4 => "4",
5 => "5",
6 => "6",
7 => "7",
8 => "8",
9 => "9",
'(' => '(',
')' => ')',
'*' => '*',
'|' => '|',
'^' => '^',
'!' => '!',
'/' => '/',
'-' => ' -',
'[' => '[',
']' => ']',
' ' => "_",
};
print uncode(<>);
sub uncode {
for(@_) {
s/(.)/$map->{$1}/g;
}
return @_;
}
=pod
=head1 NAME
=head1 SYNOPSIS
=head1 DESCRIPTION
=head1 OPTIONS
=head1 AUTHOR
Magnus Woldrich
CPAN ID: WOLDRICH
http://japh.se
=head1 REPORTING BUGS
Report bugs on rt.cpan.org or to [email protected]
=head1 COPYRIGHT
Copyright (C) 2011 Magnus Woldrich. All right reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
# vim: set ts=2 et sw=2: