freshmeat_search.pl 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/usr/bin/perl
  2. # * Copyright © 2003 Paul Mangan <claws@thewildbeast.co.uk>
  3. # *
  4. # * This file is free software; you can redistribute it and/or modify it
  5. # * under the terms of the GNU General Public License as published by
  6. # * the Free Software Foundation; either version 2 of the License, or
  7. # * (at your option) any later version.
  8. # *
  9. # * This program is distributed in the hope that it will be useful, but
  10. # * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. # * General Public License for more details.
  13. # *
  14. # * You should have received a copy of the GNU General Public License
  15. # * along with this program; if not, write to the Free Software
  16. # * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. # *
  18. my $freshmeat = "http://freshmeat.net/search?q";
  19. $_ = <>;
  20. chdir($ENV{HOME} . "/.sylpheed-claws") || die("Can't find your .sylpheed-claws directory\n");
  21. open (SYLRC, "<sylpheedrc") || die("Can't open the sylpheedrc file\n");
  22. @rclines = <SYLRC>;
  23. close SYLRC;
  24. foreach $rcline (@rclines) {
  25. if ($rcline =~ m/^uri_open_command/) {
  26. chomp $rcline;
  27. @browser = split(/=/, $rcline);
  28. $browser[1] =~ s/%s/$freshmeat=$_/;
  29. }
  30. }
  31. system("$browser[1]&");
  32. exit;