GitXplorerGitXplorer
F

find-unreferenced-xcode-files

public
5 stars
3 forks
0 issues

Commits

List of commits on branch main.
Unverified
0f4baf1226e39d02119cc89f0b87466161076e58

Add an installation section in the Readme

FFrizlab committed 6 years ago
Unverified
9f00ded69ef1806ea0cf28fe5e953a0f26125914

Share the Xcode scheme

FFrizlab committed 6 years ago
Unverified
4a4c24d4101b86e0215f0e36152e6416ae09b6ec

Add version

FFrizlab committed 6 years ago
Unverified
d551f865d3ea596d11614d7dfbed1107b3572bd4

Upgrade SimpleStream

FFrizlab committed 6 years ago
Unverified
8d0f50c9448d3eb3c0e51e31a19c714114edb8cc

Enhance project settings

FFrizlab committed 6 years ago
Unverified
ae853bc596fdcf21c7c185b59a01ed83e3f35e3e

Use a more robust file presence detection method

FFrizlab committed 7 years ago

README

The README file for this repository.

find-unreferenced-xcode-files

A helper to find unreferenced files in an Xcode project.

Installation

You can install the project via Homebrew with:

brew install frizlab/perso/find-unreferenced-xcode-files

Example of Use

project_name=MyAwesomeProject

find . \
   \( -name "*.swift" -o -name "*.h" -o -name "*.m" -o -name "*.c" \) \
   -a ! -path "*/.git/*" \
   -a ! -path "*/Carthage/*" \
   -print0 | \
   find-unreferenced-xcode-files -0 "./$project_name.xcodeproj/project.pbxproj"