repo.or.cz
/
wine-gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 468575 - Scrape some gunk off the config/ grout, r=ted
[wine-gecko.git]
/
intl
/
uconv
/
tools
/
adobe.pl
blob
8c3f003b589e5ec317382c78f599db0ea70dafc1
1
#!/usr/local/bin/perl -w
2
while
(<
STDIN
>)
3
{
4
if
(
/^#/
)
5
{
6
print
$_
;
7
}
8
else
9
{
10
(
$a
,
$b
,
$c
,
$d
) =
/^(....)(.)(..)(.*)$/
;
11
print
"0x"
.
$c
.
$b
.
"0x"
.
$a
.
$d
.
"
\n
"
;
12
}
13
}