mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 09:02:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			270 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			270 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example12;
 | 
						|
 | 
						|
{ Program to demonstrate the Execlp function. }
 | 
						|
 | 
						|
Uses Unix, strings;
 | 
						|
 | 
						|
begin
 | 
						|
  { Execute 'ls -l', with current environment. }
 | 
						|
  { 'ls' is looked for in PATH environment variable.}
 | 
						|
  { envp is defined in the system unit.}
 | 
						|
  Execlp ('ls -l',envp);
 | 
						|
end.
 |