Skip to content

Instantly share code, notes, and snippets.

@tlrobinson
Forked from anonymous/gist:175999
Created August 27, 2009 01:13
Show Gist options
  • Save tlrobinson/176000 to your computer and use it in GitHub Desktop.
Save tlrobinson/176000 to your computer and use it in GitHub Desktop.
strip extra .j files from a Objective-J build
#!/bin/sh
SJS=$(find . -name "*.sj")
for SJ in $SJS; do
DIR=$(dirname $SJ)
find $DIR -depth 1 -name "*.j" -delete
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment