Criando um script de shell para gravar no arquivo XML

0

Estou escrevendo um script de shell para facilitar a escrita do meu RSS. Agora eu estou preso em como editar corretamente meus arquivos. Veja, eu quero que o programa recolha dados de mim e depois os salve em variáveis. Então eu quero que o shell script navegue para o meu arquivo XML, insira minhas variáveis e forneça linhas e, em seguida, salve esse novo arquivo XML com meu último post na linha abaixo de minhas tags <language></language> . Aqui está uma visão do meu XML e Shell Script como estão. Atualmente estou usando o OSX e sei que uso nomes de variáveis engraçadas:)

XML:

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>CJ Cahala's Blog Feed</title>
<link>http://www.cjcahala.net/</link>
<description>This is my blog in RSS Form</description>
<lastBuildDate>Mon, 29 Sep 2014 09:16:00 GMT</lastBuildDate>
<language>en-us</language>
<item>
    <title>Hey Guys! Namecheap accepts Bitcoin! Awesome!</title>
    <link>http://namecheap.com/</link>
    <guid>http://namecheap.com/</guid>
    <pubDate>Thu, 2, Oct 2014, 00:15:00 GMT</pubDate>
    <description>Namecheap has web hosting and a payment option for Bitcoin!</description>
</item>
<item>
    <title>This is my first post</title>
    <link>http://www.cjcahala.net/resume.html</link>
    <guid>http://www.cjcahala.net/resume.html</guid>
    <pubDate>Mon, 29 Sep 2014 09:16:00 GMT</pubDate>
    <description>Hey there, this is my resume- check it out if you want!</description>
</item>
</channel>
</rss>

Shell:

#!/bin/bash 
read -p "Channel Title:" ct
read -p "Channel Description:" chand
read -p "Post Title:" pt
read -p "Post Link:" pl
read -p "Post GUID (same URL as link):" pg
read -p "Post Description:" pd
dater='date'
dirt=/Users/cjcahala/Desktop/test.xml
echo "hello\n"$dater > $dirt
    
por is-cj 04.10.2014 / 05:38

2 respostas

4

Não faça XML assim. É ruim juju. XML não é uma estrutura de dados orientada por linha, então o que você está fazendo cria um código frágil.

Os analisadores XML são o caminho a seguir. A maioria das línguas tem. Eu gosto de Perl e XML::Twig .

#!/usr/bin/env perl

use strict;
use warnings;

use XML::Twig;

sub insert_new_post {
    my ( $twig, $lang_elt ) = @_;
    my $new_item = XML::Twig::Elt->new('item');
    #you can probably omit the 'last_child' field, as the RSS readers aren't 
    #going to care about ordering, probably. 
    $new_item->insert_new_elt( 'last_child', 'title', "New title" );
    $new_item->insert_new_elt( 'last_child', 'link',  "http://unix.stackexchange.com" );
    $new_item->insert_new_elt( 'last_child', 'guid', "Somenew GUID" );
    $new_item->insert_new_elt( 'last_child', 'pubdate', "Today or something" );
    $new_item->insert_new_elt( 'last_child', 'description', "Fishy fishy fishy" );
    print "Inserting:\n", $new_item->sprint, "\n";
    $new_item->paste_after($lang_elt);
}

my $twig = XML::Twig->new(
    'pretty_print'  => 'indented',
    'twig_handlers' => { 'language' => \&insert_new_post },
);
$twig->parsefile ( 'your_file.xml' );
$twig->print;  #prints to stdout. 
    
por 28.04.2015 / 16:08
0

Não tenho certeza se uma resposta ainda é necessária para isso. Você pode usar xmlstarlet para editar um modelo XML. Por exemplo,

xmlstarlet edit --update '/rss/channel/title' --value "$ct" "$dirt"
    
por 24.01.2015 / 19:32

Tags