Created
November 29, 2017 05:35
-
-
Save TimurAykutYildirim/ddcdf05f32f7f011a63a9d160e5d1f98 to your computer and use it in GitHub Desktop.
script for increase/decrease of value in pointSize property from all storyboards and xibs in a project
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
| find . -type f -name '*xib' -o -name '*storyboard' -print0 | xargs -0 perl -pi.back -e 's/pointSize=\"(\d+)/"pointSize=\"" . ($1 + 1)/ge' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment