I have written shell script which reads array from plist.
PLIST_PATH="./../Documentation/documentation.plist"
echo "PATH = $PLIST_PATH"
FILE_ARRAY=`/usr/libexec/PlistBuddy -c "print :'public-headers'" $PLIST_PATH`
Now I want to retrieve all the strings from this array but i am not able to get count from this array.
please help.