Hello all, I'm looking for the monthly enterprise channel for Office.
We're updating our Office config profile and I can't seem to find the
keypair. I suppose it may not exist... but I want to confirm that. :P
Thanks!
OK, so a little later than that night... I forgot, sorry. It should look
something like this, adapted to your purpose. #!/bin/sh
firefoxESR=$(grep "RemotingName*" /Applications/Firefox\
ESR.app/Contents/Resources/application.ini | sed 's/.*=//') if [...
The answer here is “it’s a job for grep, sed and if/then.” In the
Firefox and Firefox ESR bundles, application.ini has a field which you
can use to differentiate between the two. Grep for firefox-esr or
firefox; sed to remove the extras; and then mak...