RSSを簡単に書くためにシェルスクリプトを書いています。さて、ファイルを正しく編集する方法を心配しています。見て、私はプログラムが私からデータを取得し、それを変数に保存したいと思います。その後、シェルスクリプトは私のXMLファイルに移動し、与えられた行の変数を入力し、私のタグの下の行に<language></language>
私の最新の投稿を含む新しいXMLファイルを保存したいと思います。これは私のXMLスクリプトとShellスクリプトのビューです。私は現在OSXを使用しており、面白い変数名を使用していることを知っています:)
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>
シェル:
#!/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
ベストアンサー1
このXMLを使用しないでください。本当にひどいZhu Zhuです。 XML は行中心のデータ構造ではないため、実行する操作によって壊れやすいコードが生成されます。
XMLパーサーは前進する道です。ほとんどの言語にはこれらの機能があります。私はPerlと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.