fpc/docs/linuxex/ex46.pp
2004-07-18 11:57:11 +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.