1

我正在尝试在格式类似于 HTML 的文件中插入一行

这就是我正在运行的

$ID = read-host "ENTER NEW ID"
$infile = C:\testfile
$outfile = C:\testfileout
Get-Content $infile |`
  foreach-object {$_ -replace "<string>ABCD</string>", "<string>ABCD</string> <string>$ID</string>"} |`
  set-content $outfile

我遇到的问题是该文件可以工作,但只是我第一次这样做。我宁愿有一个更有说服力的解决方案,它会寻找<string>(即<array>)的父标头,但我一直无法找到一个好的解决方案。<array>节点下也有多个<master>节点。

编辑:这是一个示例

<plist version="1.0">
 <dict>
  <key>XYZ</key>
  <string>ID</string>
  <key>APID</key>
  <array>
    <string>!@#$$!!</string>
  </array>
  <key>CreationDate</key>
  <date>9/20/2013</date>
  <key>Cert</key>
  <array>
    <data>
    abcs
    </data>
  </array>
  <key>ZZZ</key>
 <dict>
    <key>APID</key>
    <string>Filename</string>
    <key>get</key>
    <false/>
    <key>chain</key>
    <array>
        <string>oohhui</string>
    </array>
 </dict>
 <key>EXP</key>
 <date>9/21/2013</date>
 <key>Name</key>
 <string>Con</string>
 <key>IDstring</key>
 <array>
    <string>ABCD</string>
    <string>hdhd</string>
    </array>
4

2 回答 2

0

尝试这样的事情:

$ID = ...

[xml]$plist = gc 'C:\path\to\your.plist'
$node = $plist.SelectSingleNode("//array/string[text()='ABCD']")

$newNode = $plist.CreateElement('string')
$newNode.AppendChild($plist.CreateTextNode($ID)) >$null

$node.ParentNode.InsertAfter($newNode, $node)
于 2013-09-25T18:47:25.793 回答
0

假设您的文件与 xml 格式兼容,您可以使用类似的东西

[xml]$x=gc c:\temp\test.xml
$x.plist.dict.key | %{$_ -replace 'XYZ','ABC'} #will replace any XYZ key value by ABC value;
于 2013-09-20T11:32:41.020 回答