Tutorial by Examples

Xcode have ability to run any script with hotkey. Here is example how to assign hotkey ⌘+⌥+⌃+⇧+T to open Terminal app in current project folder. Create bash script and save it in some folder #!/bin/bash # Project Name: $XcodeProject # Project Dir: $XcodeProjectPath # Workspace Dir: $X...
In the same way as in Open Terminal in current Xcode project folder example, you can add clear of derived data folder with hotkey. Create custom behavior (follow the steps in Open Terminal in current Xcode project folder). But use another script. Script text: #!/bin/bash rm -rf $HOME"/Lib...

Page 1 of 1