23

I have used pkgbuild to create a default Component Property List file. The file looks like:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-     1.0.dtd">
<plist version="1.0">
<array>
    <dict>
        <key>BundleHasStrictIdentifier</key>
        <true/>
        <key>BundleIsRelocatable</key>
        <true/>
        <key>BundleIsVersionChecked</key>
        <true/>
        <key>BundleOverwriteAction</key>
        <string>upgrade</string>
        <key>RootRelativeBundlePath</key>
        <string>MyApp.app</string>
    </dict>
</array>
</plist>

I want to modify this file by using shell script. I tried using defaults write but it didn't do anything.

What is the way to do it?(For example: I want to set BundleIsRelocatable to false)

user2653062
  • 657
  • 1
  • 8
  • 15

7 Answers7

42

Also:

plutil -replace BundleIsRelocatable -bool false plistfilename.plist
jm666
  • 58,683
  • 17
  • 101
  • 180
8

For String use

plutil -replace NameOfProperty -string "yourNewValue" plistFileName.plist
kuzdu
  • 6,412
  • 1
  • 43
  • 61
5

Using PlistBuddy, a simple tutorial HERE.

 /usr/libexec/PlistBuddy -c "Set :BundleIsRelocatable bool false" plistfilename.plist

It can run as ONE command line to update the key/value. I use it to update CFBundleVersion generally, which can be found in this post.

Community
  • 1
  • 1
AechoLiu
  • 16,780
  • 9
  • 93
  • 115
5

A bit late, but for the record, you just need to specify the absolute path AND add the .plist extension to the filename. If you are running your script in same directory that the plist file, your case would be translated into:

defaults write $PWD/YourPlistFilename.plist BundleIsRelocatable -bool false
MrBrownser
  • 141
  • 1
  • 5
3

Use PlistBuddy!

Very simple and straight forward. Example:

/usr/libexec/PlistBuddy ComponentPropertyList.plist
Command: Set :0:BundleIsRelocatable false
Command: save
Saving...
Command: exit

Thats it! Now BundleIsRelocatable is false :D

hola
  • 2,565
  • 11
  • 21
2

Using sed:

sed -i '' '/<key>BundleIsRelocatable</{n;s/true/false/;}' file.plist

If the plist is not XML, run plutil -convert xml1 file.plist first.

Lri
  • 25,332
  • 8
  • 81
  • 78
0

The last response of Phil-CB here should be usefull.

psergiocf
  • 1,359
  • 1
  • 17
  • 26