2009-11-01から1ヶ月間の記事一覧

Thread

public static void runAndJoinThreads( List list ) throws InterruptedException { Iterator itrList = list.iterator(); while ( itrList.hasNext() ) { Thread t = itrList.next(); t.run(); } itrList = list.iterator(); while ( itrList.hasNext() ) …

UltimateDefrag

UltimateDefraghttp://itpro.nikkeibp.co.jp/article/COLUMN/20090128/323645/http://tiltstr.seesaa.net/article/104858103.htmlhttp://www.freewaregeeks.com/?page=detail&get_id=176&category=53なんかいい感じ。

find

find . -type f -print | xargs grep hoge find . -type f -print -exec grep hoge {} \;どっちがいいだろう。