LINUX.ORG.RU

Замена строки в xml файле

 ,


0

1

Здравствуйте! Суть проблемы: есть xml файл tests.xml

<?xml version="1.0"?>
<test>
	<inputs>Documents/MyDocs Downloads 1.sh 2.sh checkAccess.sh</inputs>
	<expected_outputs>5</expected_outputs>
	<real_outputs> </real_outputs>
	<result>false</result>
</test>
Надо с помощью bash'a запустить скрипт concatFiles.sh, проверить код возврата и записать результат. Вот это есть:
#!/bin/bash
rdom () { local IFS=\> ; read -d \< header data ;} 

while rdom; do 
	if [[ $header = inputs ]]; then 
		./concatFiles.sh $data &
		wait $!
		last_code=$?
		# sed "{n;n;s/ /$last_code/;}"
#здесь надо двумя строками ниже заменить пробел за $last_code
		continue
	fi
	if [[ $header = expected_outputs ]]; then
		echo $last_code
		echo $data
		if [[ $last_code = $data ]]; then
			#sed '{n;n;s/false/true/;}'
#здесь надо двумя строками ниже заменить false на true
		fi
		continue
	fi
done < tests.xml

При выполнении закомментированных sed выводит кусок xml в терминал с заменой, а сам файл остается без изменений. Второй sed при этом не выполняется вообще. Помогите разобраться, что не так делаю.



Последнее исправление: bezjen (всего исправлений: 2)

Ответ на: комментарий от ziemin

Всё равно удалят:

You can't parse [X]HTML with regex. Because HTML can't be parsed by regex. Regex is not a tool that can be used to correctly parse HTML. As I have answered in HTML-and-regex questions here so many times before, the use of regex will not allow you to consume HTML. Regular expressions are a tool that is insufficiently sophisticated to understand the constructs employed by HTML. HTML is not a regular language and hence cannot be parsed by regular expressions. Regex queries are not equipped to break down HTML into its meaningful parts. so many times but it is not getting to me. Even enhanced irregular regular expressions as used by Perl are not up to the task of parsing HTML. You will never make me crack. HTML is a language of sufficient complexity that it cannot be parsed by regular expressions. Even Jon Skeet cannot parse HTML using regular expressions. Every time you attempt to parse HTML with regular expressions, the unholy child weeps the blood of virgins, and Russian hackers pwn your webapp. Parsing HTML with regex summons tainted souls into the realm of the living. HTML and regex go together like love, marriage, and ritual infanticide. The <center> cannot hold it is too late. The force of regex and HTML together in the same conceptual space will destroy your mind like so much watery putty. If you parse HTML with regex you are giving in to Them and their blasphemous ways which doom us all to inhuman toil for the One whose Name cannot be expressed in the Basic Multilingual Plane, he comes. HTML-plus-regexp will liquify the n​erves of the sentient whilst you observe, your psyche withering in the onslaught of horror. Rege̿̔̉x-based HTML parsers are the cancer that is killing StackOverflow it is too late it is too late we cannot be saved the trangession of a chi͡ld ensures regex will consume all living tissue (except for HTML which it cannot, as previously prophesied) dear lord help us how can anyone survive this scourge using regex to parse HTML has doomed humanity to an eternity of dread torture and security holes using regex as a tool to process HTML establishes a breach between this world and the dread realm of c͒ͪo͛ͫrrupt entities (like SGML entities, but more corrupt) a mere glimpse of the world of reg​ex parsers for HTML will ins​tantly transport a programmer's consciousness into a world of ceaseless screaming, he comes, the pestilent slithy regex-infection wil​l devour your HT​ML parser, application and existence for all time like Visual Basic only worse he comes he comes do not fi​ght he com̡e̶s, ̕h̵i​s un̨ho͞ly radiańcé destro҉ying all enli̍̈́̂̈́ghtenment, HTML tags lea͠ki̧n͘g fr̶ǫm ̡yo​͟ur eye͢s̸ ̛l̕ik͏e liq​uid pain, the song of re̸gular exp​ression parsing will exti​nguish the voices of mor​tal man from the sp​here I can see it can you see ̲͚̖͔̙î̩́t̲͎̩̱͔́̋̀ it is beautiful t​he final snuffing of the lie​s of Man ALL IS LOŚ͖̩͇̗̪̏̈́T ALL I​S LOST the pon̷y he comes he c̶̮omes he comes the ich​or permeates all MY FACE MY FACE ᵒh god no NO NOO̼O​O NΘ stop the an​*̶͑̾̾​̅ͫ͏̙̤g͇̫͛͆̾ͫ̑͆l͖͉̗̩̳̟̍ͫͥͨe̠̅s ͎a̧͈͖r̽̾̈́͒͑e n​ot rè̑ͧ̌aͨl̘̝̙̃ͤ͂̾̆ ZA̡͊͠͝LGΌ ISͮ̂҉̯͈͕̹̘̱ TO͇̹̺ͅƝ̴ȳ̳ TH̘Ë͖́̉ ͠P̯͍̭O̚​N̐Y̡ H̸̡̪̯ͨ͊̽̅̾̎Ȩ̬̩̾͛ͪ̈́̀́͘ ̶̧̨̱̹̭̯ͧ̾ͬC̷̙̲̝͖ͭ̏ͥͮ͟Oͮ͏̮̪̝͍M̲̖͊̒ͪͩͬ̚̚͜Ȇ̴̟̟͙̞ͩ͌͝S̨̥̫͎̭ͯ̿̔̀ͅ

ziemin ★★
()
#!/bin/bash

content() { cat tests.xml ; echo "<>" ;}
rdom () { local IFS=\> ; read -d \< header data ;}.

content | while rdom; do.
    case "$header" in
      "")
        continue
        ;;
      inputs)
        echo -n "<$header>$data"
        ./concatFiles.sh $data
        last_code=$?
        ;;

      expected_outputs)
        exp_code=$data
        ;;

      real_outputs)
        data=$last_code
        ;;

      result)
        if [[ "$last_code" = "$exp_code" ]]; then
          data="true"
        fi
        ;;
    esac
    echo -n "<$header>$data"
done
anonymous
()
#!/bin/bash

content() { cat tests.xml ; echo "<>" ;}
rdom () { local IFS=\> ; read -d \< header data ;}

exec 4>tests.new.xml
content | while rdom; do
    case "$header" in
      "")
        continue
        ;;

      inputs)
        echo -n "<$header>$data"
        (./concatFiles.sh $data)
        last_code=$?
        ;;

      expected_outputs)
        exp_code=$data
        ;;

      real_outputs)
        data=$last_code
        ;;

      result)
        if [[ "$last_code" = "$exp_code" ]]; then
          data="true"
        fi
        ;;
    esac
    echo -n "<$header>$data" >&4
done
exec 4>&-
anonymous
()
Ответ на: комментарий от anonymous

Это в качестве результата выводит в терминал

<inputs>Documents/MyDocs Downloads 1.sh 2.sh checkAccess.sh
Файл также остается без изменений. И все поиски в гугле, к сожалению, не увенчались успехом. Проблема, как изменить этот самый xml, осталась.

bezjen
() автор топика
Ответ на: комментарий от bezjen

Это в качестве результата выводит в терминал

и в файл tests.new.xml

exec 4>tests.new.xml

выводит в терминал

это эта лишняя строчка:

      inputs)4
-        echo -n "<$header>$data"
        (./concatFiles.sh $data)

Файл также остается без изменений.

удали tests.xml и переименуй tests.new.xml

anonymous
()
Ответ на: комментарий от anonymous

Точно. Невнимательно пробежался по коду. Спасибо большое.

bezjen
() автор топика

sed выводит кусок xml в терминал с заменой, а сам файл остается без изменений

Вообщето сед НИКОГДА НЕ ИЗМЕНЯЕТ файл. Если надо изменить - сделай перенаправление вывода из седа в нужный файл.

deep-purple ★★★★★
()
Ответ на: комментарий от deep-purple

Вообщето сед НИКОГДА НЕ ИЗМЕНЯЕТ файл.

$ man sed | grep -A 2 in-place
       -i[SUFFIX], --in-place[=SUFFIX]

              edit files in place (makes backup if SUFFIX supplied)
anonymous
()
Ответ на: комментарий от anonymous

Ну молодец, нарыл опцию, у ТСа её не было, и он думал что сед должен изменять файл.

deep-purple ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.