Posted on 10-31-2014 10:18 AM
I'm getting an error message when I'm running this script. What I did was copy the cert8.db file into /Library/Application Support/JAMF/bin and want it to copy to the Firefox profile. Below is the error message I get when running it.
find: -exec: no terminating ";" or "+"
#!/bin/bash
find ~/Library/Application Support/Firefox/Profiles -name "*.default" -type d -exec cp /Library/Application Support/JAMF/bin/cert8.db {}/;
Posted on 10-31-2014 10:24 AM
I think the / toward the end is what the issue is. I think the right syntax is just {} ;
Posted on 10-31-2014 02:48 PM
I was able to get it to work. Thanks for the response.