Skip to content

Instantly share code, notes, and snippets.

@jmahowald
jmahowald / searchforjar.sh
Created February 1, 2011 17:51
Scriptlet for finding out which jar contains a given file - From Vadim Snitkosvky
#!/bin/sh
temp_1=$1
temp_2=$2
LOOK_FOR=${temp_1}
LOCATION_TO_SEARCH=${temp_2:-.}
echo "We are looking for \"$LOOK_FOR\" ... in $LOCATION_TO_SEARCH"
//
// MyController.h
//
// Created by Ben Copsey on 20/07/2009.
// Copyright 2009 All-Seeing Interactive. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <GHUnit/GHUnit.h>
@class ASINetworkQueue;