GitXplorerGitXplorer
F

find-unreferenced-xcode-files

public
5 stars
3 forks
0 issues

Commits

List of commits on branch main.
Unverified
c2ca0f8ca621a335529f531f3ecc9b1cc1cc220f

Update stream reader

FFrizlab committed 4 years ago
Unverified
ac7ac696e9c8b5aadb7ee10d228d110fe2a6da5e

Upgrade swift reader and enhance reading algorithm

FFrizlab committed 4 years ago
Unverified
9f3d65ddddee0403d3fccef7566ecbe19fef8de6

Update stream-reader

FFrizlab committed 4 years ago
Unverified
fae9fbb82ce9a29691e45862e939c4cca5580b08

Convert project to full SPM

FFrizlab committed 4 years ago
Unverified
b536bdf76e63a6a5caf65c4f355b69d8c44f71f8

Use SPM

FFrizlab committed 4 years ago
Unverified
0b341e615ecc2126f1bf3c51d6457cf2633377a8

Rename project and update for Xcode 12

FFrizlab committed 4 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"