Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::trac::ticketsearch(3pm) [debian man page]

Net::Trac::TicketSearch(3pm)				User Contributed Perl Documentation			      Net::Trac::TicketSearch(3pm)

NAME
Net::Trac::TicketSearch - A ticket search (custom query) in Trac SYNOPSIS
my $search = Net::Trac::TicketSearch->new( connection => $trac ); $search->query( owner => 'hiro', status => { 'not' => [qw(new reopened)] }, summary => { 'contains' => 'yatta!' }, reporter => [qw( foo@example.com bar@example.com )] ); print $_->id, " " for @{$search->results}; DESCRIPTION
This class allows you to run ticket searches on a remote Trac instance. ACCESSORS
connection limit [NUMBER] Get/set the maximum number of results to fetch. Default is 500. This may also be limited by the Trac instance itself. results Returns an arrayref of Net::Trac::Tickets for the current query. url Returns the relative URL for the current query (note the format will be CSV). METHODS
query [PARAMHASH] Performs a ticket search with the given search conditions. Specify a hash of "column =" value> pairs for which to search. Values may be a simple scalar, a hashref, or an arrayref. Specifying a hashref allows you to select a different operator for comparison (see below for a list). An arrayref allows multiple values to be or'd for the same column. Unfortunately Trac has no way of anding multiple values for the same column. Valid operators are "is" (default), "not", "contains", "lacks", "startswith", and "endswith". Returns undef on error and the results otherwise. LICENSE
Copyright 2008-2009 Best Practical Solutions. This package is licensed under the same terms as Perl 5.8.8. perl v5.12.3 2009-05-27 Net::Trac::TicketSearch(3pm)

Check Out this Related Man Page

GPDFTEXT(1)						      gpdftext User Commands						       GPDFTEXT(1)

NAME
gpdftext - is a GTK+ text editor for ebook PDF files. SYNOPSIS
gpdftext DESCRIPTION
This manual page documents briefly the gpdftext package. For more information on gpdftext, see the gPDFText Manual: $ yelp ghelp:gpdftext gpdftext is a GTK+ text editor for ebook PDF files. gpdftext loads the PDF, extracts the text, reformats the paragraphs into single long lines and then puts the text into a standard GTK+ editor where you can make other adjustments. On the ebook reader, the plain text file then has no unwanted line breaks and can be zoomed to whatever text size you prefer. OPTIONS
There are no command-line options supported currently. PDF files passed on the command line will be opened by gpdftext. BUGS
Please use the Debian BTS or the upstream Trac tickets. Debian BTS[1] or SourceForge Trac tickets[2]. (Trac requires a SourceForge login to file new tickets.) AUTHOR
Neil Williams <codehelp@debian.org> Wrote this manpage for the Debian system. COPYRIGHT
Copyright (C) 2009 Neil Williams This manual page was written for the Debian system (and may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or (at your option) any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. NOTES
1. Debian BTS http://bugs.debian.org/gpdftext 2. SourceForge Trac tickets http://sourceforge.net/apps/trac/gpdftext/newticket gpdftext 04/15/2011 GPDFTEXT(1)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk search column, print line

Hello. I've been banging my head against walls trying to search a comma delimited file, using awk. I'm trying to search a "column" for a specific parameter, if it matches, then I'd like to print the whole line. I've read in multiple texts: awk -F, '{ if ($4 == "string") print $0 }'... (2 Replies)
Discussion started by: Matthias03
2 Replies

2. Shell Programming and Scripting

File search in perl

Hi Gurus, Lately I have started to learn perl and need your kind support on the below query I want to search a file with name like ff_GRD_abcd_251.dat Now I will take input from user only the number i.e. 251 and the script will show o/p as the file name In the directory there are... (1 Reply)
Discussion started by: Pratik4891
1 Replies

3. Shell Programming and Scripting

Cat Values from Several files if it meets criteria for column values

I have results from some statistical analyses. The format of the results are as given below: I want to select lines that have a p-value (last column) less than 0.05 from all the results files (*.results) and cat to a new results file. It would be very nice if a new column is added that tells... (2 Replies)
Discussion started by: genehunter
2 Replies

4. UNIX for Dummies Questions & Answers

awk search in sed

Hi I search CSV (deliminited by ,) for the string "test" in the second column and if matches print the hole line. awk -F, '{ if($2=="\"test\"") print $0} ' test.csvHowto to the same in sed? I heared that sed is faster. Test.csv is 121 MB. (1 Reply)
Discussion started by: slashdotweenie
1 Replies

5. Shell Programming and Scripting

awk or grep to search one column and output the other

Hello, it would be great if someone can help me with the following: I want to search for the rows from fileA in column 1 of fileB and output column 2 of fileB if found in fileC. In the moment I search within the complete file. How can I change the code so only column 1 is searched? cat fileA... (7 Replies)
Discussion started by: Manyaka
7 Replies

6. UNIX for Beginners Questions & Answers

Issue with search and replacing multiple items in multiple files

Im having an issue when trying to replace the first column with a new set of values in multiple files. The results from the following code only replaces the files with the last set of values in val.txt. I want to replace all the files with all the values. for date in {1..31} do for val in... (1 Reply)
Discussion started by: ncwxpanther
1 Replies