Mercurial > pidgin
view gaim2blt.pl @ 1751:14494564481e
[gaim-migrate @ 1761]
a long december and there's reason to believe
maybe this year will be better than the last
i can't remember the last thing that you said as you were leaving
and the days go by so fast
and it's one more day up in the canyon
and it's one more night in hollywood
if you think that i could be forgiven
wish you would
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 25 Apr 2001 19:42:45 +0000 |
parents | 7506587a394d |
children | 7cd904828d3d |
line wrap: on
line source
#!/usr/bin/perl -w # Original by Andy Harrison, # Rewrite by Decklin Foster, # Available under the GPL. package Gaim2Blt; use strict; use Getopt::Std; use vars qw(%opts $in_group); getopts('s:', \%opts); die "usage: $0 -s 'screen name' gaim.buddy\n" unless $opts{s}; print <<"EOF"; Config { version 1 } User { screenname "$opts{s}" } Buddy { list { EOF while (<>) { chomp; my ($type, $args) = split ' ', $_, 2; next unless $type; if ($type eq 'g') { print " }\n" if ($in_group); print " $args {\n"; $in_group = 1; } elsif ($type eq 'b') { my ($buddy, $alias) = split /:/, $args; print qq( "$buddy"\n); } } print <<"EOF"; } } } EOF