Ideally, what I'd like to be able to do is:
cat xhtmlfile.xhtml |
getElementViaXPath --path='/html/head/title' |
sed -e 's%(^<title>|</title>$)%%g' > titleOfXHTMLPage.txt
|
|
|
This is really just an explaination of Yuzem's answer, but I didn't feel like this much editing should be done to someone else, and comments don't allow formatting, so...
Let's call that "read_dom" instead of "rdom", space it out a bit and use longer variables:
Okay so it defines a function called read_dom. The first line makes IFS (the input field separator) local to this function and changes it to >. That means that when you read data instead of automatically being split on space, tab or newlines it gets split on '>'. The next line says to read input from stdin, and instead of stopping at a newline, stop when you see a '<' character (the -d for deliminator flag). What is read is then split using the IFS and assigned to the variable ENTITY and CONTENT. So take the following:
The first call to Now his while loop cleaned up a bit to match the above:
The first line just says, "while the read_dom functionreturns a zero status, do the following." The second line checks if the entity we've just seen is "title". The next line echos the content of the tag. The four line exits. If it wasn't the title entity then the loop repeats on the sixth line. We redirect "xhtmlfile.xhtml" into standard input (for the Now given the following (similar to what you get from listing a bucket on S3) for
and the following loop:
You should get:
So if we wrote a
We'd get a listing of all the files in the S3 bucket. EDIT
If for some reason
Otherwise, any line splitting you do later in the script will be messed up. EDIT 2
To split out attribute name/value pairs you can augment the
Then write your function to parse and get the data you want like this:
Then while you
Then given the following example markup:
You should get this output:
EDIT 3 another user said they were having problems with it in FreeBSD and suggested saving the exit status from read and returning it at the end of read_dom like:
I don't see any reason why that shouldn't work |
|||||||||||
|
|
Command-line tools that can be called from shell scripts include:
I also use xmllint and xsltproc with little XSL transform scripts to do XML processing from the command line or in shell scripts. |
|||||||||||
|
|
You can do that very easily using only bash. You only have to add this function:
Now you can use rdom like read but for html documents. When called rdom will assign the element to variable E and the content to var C. For example, to do what you wanted to do:
|
|||||||
|
|
Check out XML2 from http://www.ofb.net/~egnor/xml2/ which converts XML to a line-oriented format. |
|||
|
|
|
I am not aware of any pure shell XML parsing tool. So you will most likely need a tool written in an other language. My XML::Twig Perl module comes with such a tool: |
|||
|
|
|
You can use xpath utility. It's installed with the Perl XML-XPath package. Usage:
or XMLStarlet. To install it on opensuse use:
or try |
||||
|
|
After some research for translation between Linux and Windows formats of the file paths in XML files I found interesting tutorials and solutions on:
|
|||
|
|
|
Yuzem's method can be improved by inversing the order of the
becomes:
If the parsing is not done like this, the last tag in the XML file is never reached. This can be problematic if you intend to output another XML file at the end of the |
|||
|
|
|
Another command line tool is my new Xidel. It also supports XPath 2 and XQuery, contrary to the already mentioned xpath/xmlstarlet. The title can be read like:
And it also has a cool feature to export multiple variables to bash. For example
sets |
|||
|
|
|
If you are wanting XML attributes, this works for me
|
||||
|
|
|
Here's a function which will convert XML name-value pairs and attributes into bash variables. http://www.humbug.in/2010/parse-simple-xml-files-using-bash-extract-name-value-pairs-and-attributes/ |
|||
|
|