This file contains 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
post_install do |installer| | |
installer.project.targets.each do |target| | |
target.build_configurations.each do |configuration| | |
target.build_settings(configuration.name)['ONLY_ACTIVE_ARCH'] = 'NO' | |
end | |
end | |
end |
This file contains 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
$ cd /tmp | |
$ echo "foo bar baz foo foo quz" > test1 | |
$ echo "bar bar foo bar baz foo quz foo foo" > test2 | |
$ sed -i '.bak' 's/foo/replaced/g' test* | |
$ tail test1 test2 | |
==> test1 <== | |
replaced bar baz replaced replaced quz | |
==> test2 <== | |
bar bar replaced bar baz replaced quz replaced replaced |
This file contains 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
self.response.out.write("hello world") |