mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
14 lines
193 B
Perl
14 lines
193 B
Perl
#!/usr/local/bin/perl -w
|
|
while(<STDIN>)
|
|
{
|
|
if(/^#/)
|
|
{
|
|
print $_;
|
|
}
|
|
else
|
|
{
|
|
($a, $b, $c,$d) = /^(....)(.)(..)(.*)$/;
|
|
print "0x" . $c . $b . "0x" . $a . $d . "\n";
|
|
}
|
|
}
|