Guest User

Untitled

a guest
Oct 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. find . \( -name "*.xib" -or -name "*.storyboard" \) -print0 | xargs -0 sed -i '' -e 's/colorSpace="custom" customColorSpace="sRGB"/colorSpace="calibratedRGB"/g'
  2.  
  3. find . \( -name "*.xib" -or -name "*.storyboard" \) -print0 | xargs -0 sed -i '' -e 's/colorSpace="calibratedRGB"/colorSpace="custom" customColorSpace="sRGB"/g'
  4.  
  5.  
  6. grep -r ./channel -e "customColorSpace=" | perl -ne '/customColorSpace="(.*)"/ && print "$1\n"' | awk 'BEGIN{FS="?"} {a[$1]++} END{for(i in a) print i, a[i]}'
  7.  
  8.  
  9. grep ./HelloWorldqweqwdqwd/Base.lproj/LaunchScreen.storyboard
Add Comment
Please, Sign In to add comment