ใช้ xmlstarlet เพื่อลบองค์ประกอบทั้งหมดที่ตรงกับค่าแอตทริบิวต์?

Jan 01 2021

คำถามของฉันคือคล้ายกับsed - โหนด XML ลบที่มีองค์ประกอบบางอย่าง - Unix และ Linux Stack แลกเปลี่ยน การพยายามทำตามข้อเสนอแนะทำให้ฉันยุ่งตลอดทั้งวัน แต่ฉันไม่สามารถหาอะไรทำได้เลยฉันจึงโพสต์คำถาม

ภายในสคริปต์ทุบตีฉันต้องลบ<folder>องค์ประกอบทั้งหมดเมื่อidแอตทริบิวต์ตรงกับค่าที่กำหนด ฉันใช้กลุ่มผู้ใช้เพื่อทำส่วนนี้จริงๆ บอกว่าผู้ใช้จะไม่ได้อยู่ในกลุ่มที่folder_a; จากนั้นควรลบ<folder>องค์ประกอบทั้งหมดที่มีแอตทริบิวต์id=".Folder_A"ออกจาก config.xml (ฉันลบโฟลเดอร์ออกจากดิสก์ด้วย)

สคริปต์ทุบตีของฉันมีลักษณะดังนี้:

#!/bin/bash

grouplist=$(groups $theuser);
for foldername in '.Folder_A' '.Folder_B'; do
  grpnm="${foldername,,}"|sed -e 's/^.//' if ! [[ $grouplist =~ ${grpnm} ]]; then perl -0777 -pe "s|(<folder.*?</folder>)|$1=~ /id=\"$foldername\"/?"":$1|gse" config.xml > config.xml
    rm -fr "$foldername" else echo "permitting access to ${foldername}"
  fi
done

คำสั่ง perl ไม่ทำงาน เป็นเพียงหนึ่งในหลาย ๆ รูปแบบที่ฉันได้ลอง ฉันยังพยายาม sed ฉันต้องการใช้ xmlstarlet แต่ฉันมีปัญหามากกว่านั้น

แก้ไข - ฉันเพิ่งพบคำตอบนี้:https://unix.stackexchange.com/a/339089/393289 มันช่วยให้ฉันคิดสิ่งนี้:

xml ed -d '//configuration/folder[contains(@id,".Folder_A")]' config.xml

ตอนนี้ฉันรู้สึกเหมือนอยู่ใกล้มากขึ้น (ฉันพยายามโหวตให้คำตอบ แต่ยังไม่มีตัวแทนเพียงพอ) อย่างไรก็ตามฉันไม่สามารถแปลชื่อแอตทริบิวต์เป็นตัวแปร bash ได้เนื่องจากเครื่องหมายอัญประกาศหรืออย่างอื่น

BTW ฉันจะทำการแก้ไขในสถานที่ (คล้ายกับsed -iคำสั่ง) ได้อย่างไรเมื่อฉันทำงานได้

นี่คือตัวอย่างไฟล์ config.xml:

    <?xml version="1.0"?>
    <configuration version="32">
        <folder id=".Folder_A" label=".Folder_A" path="~/Sync/.Folder_A" type="sendreceive" rescanIntervalS="3600" fsWatcherEnabled="true" fsWatcherDelayS="10" ignorePerms="false" autoNormalize="true">
            <filesystemType>basic</filesystemType>
            <device id="123ABC" introducedBy="">
                <encryptionPassword/>
            </device>
            <device id="987ZYX" introducedBy="">
                <encryptionPassword/>
            </device>
            <minDiskFree unit="">0</minDiskFree>
            <versioning>
                    <cleanupIntervalS>0</cleanupIntervalS>
            </versioning>
            <copiers>0</copiers>
            <disableSparseFiles>false</disableSparseFiles>
            <disableTempIndexes>false</disableTempIndexes>
            <paused>false</paused>
            <weakHashThresholdPct>25</weakHashThresholdPct>
            <markerName>.stfolder</markerName>
        </folder>
        <folder id=".Folder_B" label="Corporate (.Folder_B)" path="~/Sync/.Folder_B" type="sendreceive" rescanIntervalS="3600" fsWatcherEnabled="true" fsWatcherDelayS="5" ignorePerms="true" autoNormalize="false">
            <filesystemType>basic</filesystemType>
            <device id="123ABC" introducedBy="">
                <encryptionPassword/>
            </device>
            <device id="987ZYX" introducedBy="">
                <encryptionPassword/>
            </device>
            <minDiskFree unit="">0</minDiskFree>
            <versioning>
                    <cleanupIntervalS>0</cleanupIntervalS>
            </versioning>
            <copiers>0</copiers>
            <disableSparseFiles>false</disableSparseFiles>
            <disableTempIndexes>false</disableTempIndexes>
            <paused>false</paused>
            <weakHashThresholdPct>25</weakHashThresholdPct>
            <markerName>.stfolder</markerName>
        </folder>
        <device id="123ABC" name="laptop" compression="always" introducer="false" skipIntroductionRemovals="false" introducedBy="">
            <paused>false</paused>
            <autoAcceptFolders>true</autoAcceptFolders>
            <maxSendKbps>0</maxSendKbps>
            <maxRecvKbps>0</maxRecvKbps>
            <maxRequestKiB>0</maxRequestKiB>
            <untrusted>false</untrusted>
        </device>
        <device id="987ZYX" name="desktop" compression="always" introducer="false" skipIntroductionRemovals="false" introducedBy="">
            <paused>false</paused>
            <autoAcceptFolders>true</autoAcceptFolders>
            <maxSendKbps>0</maxSendKbps>
            <maxRecvKbps>0</maxRecvKbps>
            <maxRequestKiB>0</maxRequestKiB>
            <untrusted>false</untrusted>
        </device>
        <gui enabled="true" tls="true" debugging="false">
            <address>127.0.0.1:8384</address>
            <apikey>98qewr0qe9r</apikey>
            <theme>default</theme>
        </gui>
        <ldap/>
        <options>
            <listenAddress></listenAddress>
            <maxSendKbps>0</maxSendKbps>
            <maxRecvKbps>0</maxRecvKbps>
            <reconnectionIntervalS>60</reconnectionIntervalS>
            <relaysEnabled>false</relaysEnabled>
            <relayReconnectIntervalM>10</relayReconnectIntervalM>
            <startBrowser>false</startBrowser>
            <urAccepted>-1</urAccepted>
            <urSeen>3</urSeen>
            <urUniqueID/>
            <urPostInsecurely>false</urPostInsecurely>
            <urInitialDelayS>1800</urInitialDelayS>
            <restartOnWakeup>true</restartOnWakeup>
            <upgradeToPreReleases>false</upgradeToPreReleases>
            <keepTemporariesH>24</keepTemporariesH>
            <cacheIgnoredFiles>false</cacheIgnoredFiles>
            <progressUpdateIntervalS>5</progressUpdateIntervalS>
            <limitBandwidthInLan>false</limitBandwidthInLan>
            <overwriteRemoteDeviceNamesOnConnect>false</overwriteRemoteDeviceNamesOnConnect>
            <tempIndexMinBlocks>10</tempIndexMinBlocks>
            <trafficClass>0</trafficClass>
            <defaultFolderPath>~/Sync/</defaultFolderPath>
            <maxFolderConcurrency>0</maxFolderConcurrency>
            <crashReportingEnabled>false</crashReportingEnabled>
            <databaseTuning>auto</databaseTuning>
            <maxConcurrentIncomingRequestKiB>0</maxConcurrentIncomingRequestKiB>
            <announceLANAddresses>false</announceLANAddresses>
            <sendFullIndexOnUpgrade>false</sendFullIndexOnUpgrade>
        </options>
    </configuration>

นี่คือตัวอย่าง config.xml สำหรับการซิงค์

คำตอบ

1 Freddy Jan 01 2021 at 10:10

ใช้-L/ --inplaceoption (ดูxml edit --help) และการจับคู่แบบตรงทั้งหมดจากคำตอบที่เชื่อมโยง:

xml ed -L -d "//configuration/folder[@id=\"$foldername\"]" config.xml