Created
September 30, 2011 20:07
-
-
Save rustymyers/1254832 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat preferences.js | |
pref("app.update.url", "http://url.com/update.xml"); | |
pref("app.update.url.manual", "http://url.com/manual"); | |
$ perl -i~ -pe 's{pref("app.update.url", "http://url.com/update.xml");}{pref("app.update.url", "http://custom.edu/update.xml");}g' preferences.js | |
$ cat preferences.js* | |
pref("app.update.url", "http://url.com/update.xml"); | |
pref("app.update.url.manual", "http://url.com/manual"); | |
pref("app.update.url", "http://url.com/update.xml"); | |
pref("app.update.url.manual", "http://url.com/manual"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment