Provided by: xq_1.0.0-2_amd64 bug

NAME

       xq - command-line XML and HTML beautifier and content extractor

SYNOPSIS

       xq [options...] [file]

DESCRIPTION

       Formats  the  provided file and outputs it in the colorful mode.  The file can be provided
       as an argument or via stdin.

OPTIONS

       --version | -v
           Prints versions information and exits.

       --help | -h
           Prints the synopsis and a list of options and exits.

       --indent int
           Uses the given number of spaces for indentation (default 2).

       --no-color
           Disables colorful output (only formatting).

       --tab
           Uses tabs instead of spaces for indentation.

       --xpath | -x string
           Extracts the node(s) from XML using provided XPath query.

       --extract | -e string
           Extracts a single node from XML using provided XPath query.

       --html | -m
           Uses HTML formatter instead of XML.

EXAMPLES

       Format an XML file and highlight the syntax:

           $ xq test/data/xml/unformatted.xml

       Utility also accepts input through stdin:

           $ curl -s https://www.w3schools.com/xml/note.xml | xq

       HTML content can be formatted and highlighted using -m flag:

           $ xq -m test/data/html/formatted.html

       Extract the text content of all nodes with city name:

           $ cat test/data/xml/unformatted.xml | xq -x //city

SEE ALSO

       https://github.com/sibprogrammer/xq - official website