Created
March 18, 2013 10:58
-
-
Save coldclimate/5186432 to your computer and use it in GitHub Desktop.
A one liners to strip all the crap from php.ini so you can diff it easily when you upgrade
This file contains hidden or 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 php.ini.ucf-old | sed '/^;/ d' | sed '/^\[/ d' | sed '/^$/d' | sort > php.old |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
removes comments, blank lines and lines starting with [ then sorts