Sponsored Content
Full Discussion: Learning Unix
Top Forums UNIX for Dummies Questions & Answers Learning Unix Post 302141308 by booyah on Thursday 18th of October 2007 03:15:40 PM
Old 10-18-2007
My recommendation

I don't buy books anymore, but I would steer you towards web guides and tutorials. Search term "learning bash" should be a good general start, from there you can add Mac search terms.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Learning Unix

Hello one and all I am a Prof in a University in France and have been handed the "Unix" course and would like to know if anyone has a ready made course to propose to me for beginners, my students are in t heir first year and a few are ok with Unix, however i would like to find a detailed "lesson... (1 Reply)
Discussion started by: garydavies
1 Replies

2. UNIX Desktop Questions & Answers

Learning Unix , Advice?

I am a long-time Windows NT, 2000 user at home and work. I want to learn Unix to broaden myself. What flavor do you recommend and how do you recommend practicing with it at home? how to get a copy of it to practice with? (1 Reply)
Discussion started by: robmaxfli
1 Replies

3. UNIX for Dummies Questions & Answers

Is learning Unix worth it?

Hello. I am a comp sci major and am forced to take a intro to Unix class. So far i am loving it. I was wondering is it useful to learn more off on my own? Will it have any use to me when i get a job after school is done? Same applies to Perl Sed and Awk? (5 Replies)
Discussion started by: smiledk1
5 Replies

4. UNIX for Dummies Questions & Answers

where to obtain UNIX and learning on a UNIX variant?

Hi. I've just started to get into UNIX. Researched on the Net, found out that most of the UNIX variants are not offered online. 1. Any of you guys know where I could obtain them on the Net? or anywhere at all? 2. Does learning a UNIX variant enough to cover an understanding of other UNIX... (6 Replies)
Discussion started by: ninelives1980
6 Replies

5. UNIX for Dummies Questions & Answers

Learning UNIX

Hi guys! Am new to this forum so would like to say hello to all. Was wondering, what the best way to learn UNIX was? Theoretically or Practically? Cheers (2 Replies)
Discussion started by: bibah11
2 Replies

6. What is on Your Mind?

Learning UNIX

Alright I am looking to further my knowledge and experiance with computers (Currently a PC technician but not much knowledge with other operating systems like unix/linux). What im trying to do now is get a basic understanding of unix and its commands, unix shells, the unix directory structure, and... (5 Replies)
Discussion started by: Rycon
5 Replies

7. UNIX for Advanced & Expert Users

I am learning UNIX and

I am wondering, is there a core book or instruction DVD that I can learn from and be functional in UNIX with. I know a lot of the basic commands and I just figured out how to create a file but, I want to be able to handle this with no problem. (3 Replies)
Discussion started by: MOSE
3 Replies

8. UNIX for Dummies Questions & Answers

learning unix

Hi, i have started to learn unix (on and off for the past few months) and am wishing to move into that area in the administration field of it. I have been working in the help desk area (desktop support - windows based) for about 2.5 years and moved into a team leading role for 1 year in which i... (1 Reply)
Discussion started by: donnieDarko
1 Replies

9. UNIX for Dummies Questions & Answers

Learning UNIX

Hi Everyone, I know nothing about Solaris / Linux / AIX but I know they are all part of Unix. I have been using Windows the last 15years and I have been a LAN admin, I am now working in IT Operations and we use some solaris commands but not much plus its from following a document so we can't... (1 Reply)
Discussion started by: maxie
1 Replies

10. What is on Your Mind?

Learning UNIX

Hi Guys , Hope everybody is fine . I am here to learn UNIX . Please provide any URLs/pdfs for learning . Thanks in advance. -Radha ---------- Post updated at 07:59 PM ---------- Previous update was at 07:48 PM ---------- Just to add , I am good at basics but unable to write scripts... (4 Replies)
Discussion started by: radha254
4 Replies
Xapian::QueryParser(3pm)				User Contributed Perl Documentation				  Xapian::QueryParser(3pm)

NAME
Search::Xapian::QueryParser - Parse a query string into a Search::Xapian::Query object DESCRIPTION
This module turns a human readable string into something Xapian can understand. The syntax supported is designed to be similar to other web based search engines, so that users familiar with them don't have to learn a whole new syntax. SYNOPSIS
use Search::Xapian qw/:standard/; my $qp = new Search::Xapian::QueryParser( [$database] ); $qp->set_stemmer(new Search::Xapian::Stem("english")); $qp->set_default_op(OP_AND); $database->enquire($qp->parse_query('a NEAR word OR "a phrase" NOT (too difficult) +eh')); METHODS
new <database> QueryParser constructor. set_stemmer <stemmer> Set the Search::Xapian::Stem object to be used for stemming query terms. set_stemming_strategy <strategy> Set the stemming strategy. Valid values are "STEM_ALL", "STEM_SOME", "STEM_NONE". set_stopper <stopper> Set the Search::Xapian::Stopper object to be used for identifying stopwords. set_default_op <operator> Set the default operator. This operator is used to combine non-filter query items when no explicit operator is used. The most useful values for this are OP_OR (the default) and OP_AND. OP_NEAR and OP_PHRASE can also be useful. See Search::Xapian for descriptions of these constants. get_default_op Returns the current default operator. set_database <database> Pass a Search::Xapian::Database object which is used to check whether terms exist in some situations. parse_query <query_string> [<flags>] Parses the query string according to the rules defined in the query parser documentation below. You can specify certain flags to modify the searching behaviour: FLAG_BOOLEAN, FLAG_PHRASE, FLAG_LOVEHATE, FLAG_BOOLEAN_ANY_CASE, FLAG_WILDCARD, FLAG_PURE_NOT, FLAG_PARTIAL, FLAG_SPELLING_CORRECTION, FLAG_SYNONYM, FLAG_AUTO_SYNONYMS, FLAG_AUTO_MULTIWORD_SYNONYMS To specify multiple flags, "bitwise or" them together (with "|"). The default flags are "FLAG_PHRASE|FLAG_BOOLEAN|FLAG_LOVEHATE" add_prefix <field> <prefix> Add a probabilistic term prefix. E.g. $qp->add_prefix("author", "A"); Allows the user to search for author:orwell which will search for the term "Aorwel" (assuming English stemming is in use). Multiple fields can be mapped to the same prefix (so you can e.g. make title: and subject: aliases for each other). Parameters: field The user visible field name prefix The term prefix to map this to add_boolean_prefix <field> prefix Add a boolean term prefix allowing the user to restrict a search with a boolean filter specified in the free text query. E.g. $p->add_boolean_prefix("site", "H"); Allows the user to restrict a search with site:xapian.org which will be converted to Hxapian.org combined with any probabilistic query with "OP_FILTER". Multiple fields can be mapped to the same prefix (so you can e.g. make site: and domain: aliases for each other). Parameters: field The user visible field name prefix The term prefix to map this to stoplist_begin stoplist_end unstem_begin unstem_end get_description Returns a string describing this object. get_corrected_query_string Get the spelling-corrected query string. This will only be set if FLAG_SPELLING_CORRECTION is specified when QueryParser::parse_query() was last called. If there were no corrections, an empty string is returned. set_max_wildcard_expansion <limit> Specify the maximum expansion of a wildcard term. Note: you must also set FLAG_WILDCARD for wildcard expansion to happen. Parameter limit is the maximum number of terms each wildcard in the query can expand to, or 0 for no limit (which is the default). REFERENCE
http://www.xapian.org/docs/queryparser.html http://www.xapian.org/docs/sourcedoc/html/classXapian_1_1QueryParser.html perl v5.14.2 2012-05-09 Xapian::QueryParser(3pm)
All times are GMT -4. The time now is 11:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy