GitXplorerGitXplorer
F

find-unreferenced-xcode-files

public
5 stars
3 forks
0 issues

Commits

List of commits on branch main.
Unverified
9b23a90cdcf863f0871293b183fff345598aeb9c

Add support for PBXVariantGroup (usually for localised resources)

FFrizlab committed 7 years ago
Unverified
140d4e4ea798e84698fb5c2dcfbcb3c33ed91156

Add Readme

FFrizlab committed 7 years ago
Unverified
f5cb16ca08dac421c0f90ce2f5451081a6d86b8a

Finish implementation of the program

FFrizlab committed 7 years ago
Unverified
18923beedb48560417c3f40e1f1e4b8bd9bfe7af

Implement command-line options parsing

FFrizlab committed 7 years ago
Unverified
be0a719b5e0d0e8cbd7886c6f934d60c39a4a876

Initial Commit

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"