From 5bef49c26c5d3c49da84aeddee3217a2fa917e8c Mon Sep 17 00:00:00 2001 From: "barnboy%trilobyte.net" <> Date: Sat, 11 Aug 2001 05:15:12 +0000 Subject: Removal of HTML from docs temporarily due to massive renaming in the latest restructuring of the Bugzilla Guide. --- docs/html/cmdline.html | 262 ------------------------------------------------- 1 file changed, 262 deletions(-) delete mode 100644 docs/html/cmdline.html (limited to 'docs/html/cmdline.html') diff --git a/docs/html/cmdline.html b/docs/html/cmdline.html deleted file mode 100644 index a7dcdf0da..000000000 --- a/docs/html/cmdline.html +++ /dev/null @@ -1,262 +0,0 @@ -Command-line Bugzilla Queries
The Bugzilla Guide
PrevAppendix D. Useful Patches and Utilities for BugzillaNext

D.2. Command-line Bugzilla Queries

Users can query Bugzilla from the command line using - this suite of utilities. -

The query.conf file contains the mapping from options to field - names and comparison types. Quoted option names are "grepped" for, so - it should be easy to edit this file. Comments (#) have no effect; you - must make sure these lines do not contain any quoted "option" -

buglist is a shell script which submits a Bugzilla query and writes the - resulting HTML page to stdout. It supports both short options, - (such as "-Afoo" or "-Rbar") and long options (such as - "--assignedto=foo" or "--reporter=bar"). If the first character - of an option is not "-", it is treated as if it were prefixed - with "--default=". -

The columlist is taken from the COLUMNLIST environment variable. - This is equivalent to the "Change Columns" option when you list - bugs in buglist.cgi. If you have already used Bugzilla, use - grep COLUMLIST ~/.netscape/cookies to see - your current COLUMNLIST setting. -

bugs is a simple shell script which calls buglist and extracts - the bug numbers from the output. Adding the prefix - "http://bugzilla.mozilla.org/buglist.cgi?bug_id=" - turns the bug list into a working link if any bugs are found. - Counting bugs is easy. Pipe the results through - sed -e 's/,/ /g' | wc | awk '{printf $2 "\n"}' -

Akkana says she has good results piping buglist output through - w3m -T text/html -dump -

  1. Download three files: -

    1. bash$ - wget -O query.conf 'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26157' - -

    2. bash$ - wget -O buglist 'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26944' - -

    3. bash# - wget -O bugs 'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26215' - -

  2. Make your utilities executable: - bash$ - chmod u+x buglist bugs - -


PrevHomeNext
The setperl.csh UtilityUpThe Quicksearch Utility
\ No newline at end of file -- cgit v1.2.3-24-g4f1b