www::search::altavista::careers(3pm) [debian man page]
WWW::Search::AltaVista::Careers(3pm) User Contributed Perl Documentation WWW::Search::AltaVista::Careers(3pm)NAME
WWW::Search::AltaVista::Careers - class for searching www.altavistacareers.com
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search('AltaVista::Careers');
my $sQuery = WWW::Search::escape_query("java c++)");
$oSearch->native_query($sQuery,
{'state' => 'CA'});
while (my $res = $oSearch->next_result()) {
print $res->title . " " . $res->change_date
. " " . $res->location . " " . $res->url . "
";
}
DESCRIPTION
This class is a AltaVistaCareers specialization of WWW::Search. It handles making and interpreting AltaVistaCareers searches
http://careers.altavista.com.
The returned WWW::SearchResult objects contain url, title, location and change_date fields.
OPTIONS
The following search options can be activated by sending a hash as the second argument to native_query().
The only available options are to select a specific location. The default is to search all locations. To change it use
{'state' => $state} - Only jobs in state $state.
{'city' => $city} - Only job in a specific $city
AUTHOR
"WWW::Search::AltaVistaCareers" is written and maintained by Alexander Tkatchev (Alexander.Tkatchev@cern.ch).
LEGALESE
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
native_setup_search
This private method does the heavy lifting after native_query() is called.
native_retrieve_some
This private method does the heavy lifting of communicating with the server.
perl v5.12.4 2011-11-02 WWW::Search::AltaVista::Careers(3pm)
Check Out this Related Man Page
WWW::Search::Yahoo::UK(3pm) User Contributed Perl Documentation WWW::Search::Yahoo::UK(3pm)NAME
WWW::Search::Yahoo::UK - class for searching Yahoo! UK (not Ireland)
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search('Yahoo::UK');
my $sQuery = WWW::Search::escape_query("Surrey");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "
";
DESCRIPTION
This class is a Yahoo! UK specialization of WWW::Search. It handles making and interpreting searches on Yahoo! UK http://uk.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
NOTES SEE ALSO
To make new back-ends, see WWW::Search.
BUGS
Please tell the maintainer if you find any!
TESTING
There are no tests defined for this module.
AUTHOR
"WWW::Search::Yahoo" is maintained by Martin Thurn (mthurn@cpan.org).
LEGALESE
Copyright (C) 1998-2009 Martin 'Kingpin' Thurn
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
perl v5.12.4 2011-11-02 WWW::Search::Yahoo::UK(3pm)
I wish to transition from Mainframe to Open Systems Storage Administration. How much training would I need in order to meet requirements for an AIX Administrator position? (3 Replies)
Hi All,
I have almost 1000+ files and I want to search specific pattern. Looking forwarded your input. Pls note that need to ignore words in between /* */
Search for: "insert into xyz" (Which procedure contain all 3).
Expected output:
procedure test1
function test2
procedure test3
... (3 Replies)
Hi All,
I have almost 1000+ files and I want to search specific pattern. Looking forwarded your input. Pls note that need to ignore words in between /* */
Search for: "insert into xyz" (Which procedure contain all 3).
Expected output:
procedure test1
procedure test2
procedure test3
File... (12 Replies)
Hi,
I would like to know how to search for a pattern in a file and assign it to a variable using sed.
For example, my hope.txt
address1=123 street,abc city,xyz
address2=456 street,abc city,xyz
In my script I would like to search for patter "address1" and assign the complete line into a... (5 Replies)
I'm working on a script for class as a final project. We have to ask for values (city, state, zip) five times, but the state can only be MI, IN, IL, or OH. I'm trying to do this with a while loop inside of a while loop, but I have no idea how to do it properly.
Here's what I have so far:
... (3 Replies)
Hi,
I have a file abc.dat. It contains the fileds of empid, empname, empcity. each city contains 10 records. i want to create the city file and pass the same city records into the file. I don't know the city names.
In unix using awk command how can we do?
abc.dat:
1 john delhi
2... (2 Replies)
I have to rearrange the fields so that the fields are separated by a specific delimiter and come in this order: state, last name, first name, city.
Mickey Mouse, 1111 Disney Dr., Orlando FL
Minnie Mouse, 1112 Disney Dr., Anaheim CA
Adam Voter, 902 Biscayne Blvd., Miami FL
Zelda Bosco, 4000... (4 Replies)
Well guys, this MUST be a first.
This is DEMO code only and has NO error detection or correction, nor out of bounds checking.
I have succumbed to Python and scipy to do the FFT heavy lifting as I have absolutely no idea where to start do such a thing using AWK. This is a taster for me to... (7 Replies)