Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evrenozturkhurriyet/177bb203c196902b43e8b882802668b4 to your computer and use it in GitHub Desktop.
Save evrenozturkhurriyet/177bb203c196902b43e8b882802668b4 to your computer and use it in GitHub Desktop.
perl -pi -w -e 's/"\@dimen\/unit([0-9]+)"/"\"\@dimen\/unit" . int($1*1.17+0.5) . "\""/e;' *.xml;
perl -pi -w -e 's/"([0-9]+)dp"/"\"" . int($1*1.63+0.5) . "dp\""/e;' *.xml;
perl -pi -w -e 's/"([0-9]+)sp"/"\"" . int($1*1.63+0.5) . "dp\""/e;' *.xml;
perl -pi -w -e 's/"([0-9]+)dp"/"\"\@dimen\/unit$1\""/e;' *.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment