FindFileApplication.st
changeset 5408 64a874a3ef4b
parent 5279 165a7b841a86
child 5557 c4f509890024
equal deleted inserted replaced
5407:fb411d1eb989 5408:64a874a3ef4b
   968         [
   968         [
   969             |cmd line f|
   969             |cmd line f|
   970 
   970 
   971             cmd := 'locate '.
   971             cmd := 'locate '.
   972             ignCaseInName ifTrue:[
   972             ignCaseInName ifTrue:[
   973                 cmd := cmd , '--ignore-case'
   973                 cmd := cmd , '--ignore-case '
   974             ].
   974             ].
   975 
   975 
   976             cmd := cmd , ((namePatterns collect:[:nm | dir asFilename asAbsoluteFilename constructString:nm])
   976             cmd := cmd , ((namePatterns collect:[:nm | dir asFilename asAbsoluteFilename constructString:nm])
   977                             asStringCollection asStringWith:Character space).
   977                             asStringCollection asStringWith:Character space).
   978             inStream := PipeStream readingFrom:cmd inDirectory:dir.
   978             inStream := PipeStream readingFrom:cmd inDirectory:dir.
  1109 ! !
  1109 ! !
  1110 
  1110 
  1111 !FindFileApplication class methodsFor:'documentation'!
  1111 !FindFileApplication class methodsFor:'documentation'!
  1112 
  1112 
  1113 version
  1113 version
  1114     ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.19 2003-10-14 11:32:04 penk Exp $'
  1114     ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.20 2003-12-23 22:11:29 cg Exp $'
  1115 ! !
  1115 ! !