Sponsored Content
Full Discussion: Plist to Unix Executable
Operating Systems OS X (Apple) Plist to Unix Executable Post 302396837 by unimachead on Friday 19th of February 2010 12:25:05 PM
Old 02-19-2010
Plist to Unix Executable

I'm using an old conversion method for converting a plist into an XML file, but that's not what I'm needing just via terminal now. What I'm looking for is an answer to convert a plist file into an executable. I'd like to import it into Casper and have the JSS push it out onto an image. In this case the plist is the "com.apple.sidebarlists.plist"

Making this into a script would be keen.

Any thoughts? Suggestions? Smilie

** As some of you are thinking about a resolve for this one with me, keep in mind that plists have nested properties. It's controlling the properties switches binaurally that I'd like to be able to do. Simple by logic, 0 = off, 1 = on ...Bool = true/false.

Last edited by unimachead; 02-20-2010 at 02:18 AM.. Reason: Extra tips
 

10 More Discussions You Might Find Interesting

1. OS X (Apple)

Cannot translate Unix executable files

Help!! I loaded OS X Panther on my Mac G4 and found that many files previously saved as txt files were inadventently converted to Unix executable files. When I try to read these in Word, the Word filters cannot recognize or translate the file properly. Does anyone know how to translate these files?... (1 Reply)
Discussion started by: Steven Greenber
1 Replies

2. OS X (Apple)

Converting Unix executable files

I loaded OS X Panther on my Mac G4 and found that many files previously saved as Word or Word Perfect files were inadventently converted to Unix executable files. When I try to read these in Word, it cannot recognize or translate the file properly. Does anyone know how to translate these files? Is... (4 Replies)
Discussion started by: Steven Greenber
4 Replies

3. OS X (Apple)

the best way of editing .plist files

:( what is the best way of editing the various .plist files without adding third party files? Or is the easiest way is to add third party applications, which ones? please kept in mind that i am not a programmer. mike (1 Reply)
Discussion started by: mehow
1 Replies

4. UNIX for Dummies Questions & Answers

Making UNIX script executable

Hello, I am very new to UNIX and I have been learning about writing scripts and making them executable. I created a script called myscript. It has three lines: #! /bin/sh # This is my first shell script echo friendsjustfriends Now I try to run it using the sh command and it works Next I... (4 Replies)
Discussion started by: rohitx
4 Replies

5. UNIX for Dummies Questions & Answers

Cannot run UNIX executable !

I have installed the Darwin Calendar Server on my Mac and got it working. To start the server I open a Finder window on my mac and click the UNIX executable called RUN. In order to start the server automatically on bootup I used LINGON to add a startup Daemon to call "RUN -d". When I reboot... (6 Replies)
Discussion started by: thylacine
6 Replies

6. UNIX for Dummies Questions & Answers

Using defaults read to get value from plist

Hi there, I'm trying to retrieve a value from a plist file, which I have done before with no problems, however this plist file looks a little different.... Normally it's like this; <plist version="1.0"> <dict> key>KeyName</key> <string>blah</string> I want the value of KeyName, so... (1 Reply)
Discussion started by: davewg
1 Replies

7. UNIX for Dummies Questions & Answers

listing executable files in unix.

How to list out the files which are not accessed for the last n days? and How to list out all the executable files in a directory? can anyone help me on the above? Thanks in advance. (3 Replies)
Discussion started by: venkatesht
3 Replies

8. Shell Programming and Scripting

unix executable file

Hi - How can I find out under sh whitch file is an unix executable file? Need it for an software inventory. Thanks in advance. Regards - Lazybaer (6 Replies)
Discussion started by: lazybaer
6 Replies

9. Shell Programming and Scripting

Write an executable file in Unix

Hi, I want to write an executable file in unix env to go to a particular path instead of always typing the long path cd /app/oracle/product/10.2.0/Db_1/scripts/prejib/sample. I have tried with the below script in but not working . please help me bash-3.00$ cat a.sh #!/bin/sh ... (3 Replies)
Discussion started by: prejib
3 Replies

10. Shell Programming and Scripting

Parsing plist file ?

Hi, I wondered if it was possible to parse a plist file like this http://dl.dropbox.com/u/14586156/stuff/Bookmarks.plist so it will afterwards look like this <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"... (0 Replies)
Discussion started by: pasc
0 Replies
Property List(3m17n)						 The m17n Library					      Property List(3m17n)

NAME
Property_List - Property List objects and API for them. Typedefs typedef struct MPlist MPlist Type of property list objects. Functions MPlist * mplist_deserialize (MText *mt) Generate a property list by deserializing an M-text. MPlist * mplist (void) Create a property list object. MPlist * mplist_copy (MPlist *plist) Copy a property list. MPlist * mplist_put (MPlist *plist, MSymbol key, void *val) Set the value of a property in a property list. void * mplist_get (MPlist *plist, MSymbol key) Get the value of a property in a property list. MPlist * mplist_put_func (MPlist *plist, MSymbol key, M17NFunc func) Set the value (function pointer) of a property in a property list. M17NFunc mplist_get_func (MPlist *plist, MSymbol key) Get the value (function pointer) of a property in a property list. MPlist * mplist_add (MPlist *plist, MSymbol key, void *val) Add a property at the end of a property list. MPlist * mplist_push (MPlist *plist, MSymbol key, void *val) Add a property at the beginning of a property list. void * mplist_pop (MPlist *plist) Remove a property at the beginning of a property list. MPlist * mplist_find_by_key (MPlist *plist, MSymbol key) Find a property of a specific key in a property list. MPlist * mplist_find_by_value (MPlist *plist, void *val) Find a property of a specific value in a property list. MPlist * mplist_next (MPlist *plist) Return the next sublist of a property list. MPlist * mplist_set (MPlist *plist, MSymbol key, void *val) Set the first property in a property list. int mplist_length (MPlist *plist) Return the length of a property list. MSymbol mplist_key (MPlist *plist) Return the key of the first property in a property list. void * mplist_value (MPlist *plist) Return the value of the first property in a property list. Variables MSymbol Minteger Symbol whose name is 'integer'. MSymbol Mplist Symbol whose name is 'plist'. MSymbol Mtext Symbol whose name is 'mtext'. Detailed Description Property List objects and API for them. A property list (or plist for short) is a list of zero or more properties. A property consists of a key and a value, where key is a symbol and value is anything that can be cast to (void *). If the key of a property is a managing key, its value is a managed object. A property list itself is a managed objects. If each key of a plist is one of Msymbol, Mtext, Minteger, and Mplist, the plist is called as well-formed and represented by the following notation in the documentation. PLIST ::= '(' ELEMENT * ')' ELEMENT ::= INTEGER | SYMBOL | M-TEXT | PLIST M-TEXT ::= '"' text data ... '"' For instance, if a plist has four elements; integer -20, symbol of name 'sym', M-text of contents 'abc', and plist of integer 10 and symbol of name 'another-symbol', it is represented as this: (-20 sym 'abc' (10 another-symbol)) Typedef Documentation typedef struct MPlist MPlist Type of property list objects. The type MPlist is for a property list object. Its internal structure is concealed from application programs. Variable Documentation MSymbol Minteger Symbol whose name is 'integer'. The symbol Minteger has the name 'integer'. The value of a property whose key is Minteger must be an integer. MSymbol Mplist Symbol whose name is 'plist'. The symbol Mplist has the name 'plist'. It is a managing key. A value of a property whose key is Mplist must be a plist. MSymbol Mtext Symbol whose name is 'mtext'. The symbol Mtext has the name 'mtext'. It is a managing key. A value of a property whose key is Mtext must be an M-text. Author Generated automatically by Doxygen for The m17n Library from the source code. COPYRIGHT
Copyright (C) 2001 Information-technology Promotion Agency (IPA) Copyright (C) 2001-2011 National Institute of Advanced Industrial Science and Technology (AIST) Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License <http://www.gnu.org/licenses/fdl.html>. Version 1.6.2 12 Jan 2011 Property List(3m17n)
All times are GMT -4. The time now is 01:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy