git diff --name-status branch1..branch2


git difftool branch1:config/environment.rb branch2:config/environment.rb



http://blog.firsthand.ca/2011/05/compare-git-branches-compare-two-files.html



Posted by tenn
,







static NSString *_appId = @"593799029";

// 경고창이 표시될때까지의 날짜

static double _daysUntilPrompt = 5;

// 경고창이 표시될때까지의 기동회수

static NSInteger _usesUntilPrompt = 20;

//특정의 조건으로 경고창을 표시하고 싶을 때

static NSInteger _significantEventsUntilPrompt = -1;

// 나중에 를 선택했을 경우, 몇일후 경고창을 재표시할것인가를 지정

static double _timeBeforeReminding = 1;

//YES를 할 경우 매번 경고창을 표시

static BOOL _debug = NO;



http://programming-ios.com/objective_c-appirater-alert/

Posted by tenn
,


for f in `ls`; do

  echo "File -> $f"

done

http://superuser.com/questions/31464/looping-through-ls-results-in-bash-shell-script

Posted by tenn
,