LoginSignup
3
3

More than 5 years have passed since last update.

storyboard と xib のフォントを一括で書き換えるワンライナー

Posted at

やっぱりシステムフォントを使いたいとなった時のコマンドです。

find . -type f -name "*.storyboard" -print0 | xargs -0 sed -i "" -e 's/name="HiraginoSans-W3" family="Hiragino Sans"/type="system"/g'

find . -type f -name "*.xib" -print0 | xargs -0 sed -i "" -e 's/name="HiraginoSans-W3" family="Hiragino Sans"/type="system"/g'

find . -type f -name "*.storyboard" -print0 | xargs -0 sed -i "" -e 's/name="HiraginoSans-W6" family="Hiragino Sans"/type="boldSystem"/g'

find . -type f -name "*.xib" -print0 | xargs -0 sed -i "" -e 's/name="HiraginoSans-W6" family="Hiragino Sans"/type="boldSystem"/g'

逆もまた然り

参考URL

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3