root/tags/rel0_45/supersearch.cgi

Revision 342, 275 bytes (checked in by earle, 5 years ago)

Make shebang conform in supersearch.cgi.
Update to Changes.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1#!/usr/local/bin/perl
2
3use warnings;
4use strict;
5
6use CGI;
7use Config::Tiny;
8use OpenGuides::SuperSearch;
9
10my $config = Config::Tiny->read( "wiki.conf" );
11my $search = OpenGuides::SuperSearch->new( config => $config );
12my %vars = CGI::Vars();
13$search->run( vars => \%vars );
Note: See TracBrowser for help on using the browser.