blob: 3ffc8ef4df3f99f6b14a542248508d8795d84ef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Program Example10;
{ Program to demonstrate the Execl function. }
Uses oldlinux, strings;
begin
{ Execute 'ls -l', with current environment. }
{ 'ls' is NOT looked for in PATH environment variable.}
Execl ('/bin/ls -l');
end.
|