fpc/docs/unixex/ex46.pp
2004-10-22 21:57:33 +00:00

10 lines
179 B
ObjectPascal

Program Example46;
{ Program to demonstrate the FSearch function. }
Uses BaseUnix, Unix, Strings;
begin
Writeln ('ls is in : ',FSearch ('ls',strpas(fpGetenv('PATH'))));
end.