mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 14:12:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			232 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			232 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example10;
 | |
| 
 | |
| { Program to demonstrate the Execl function. }
 | |
| 
 | |
| Uses linux, strings;
 | |
| 
 | |
| begin
 | |
|   { Execute 'ls -l', with current environment. }
 | |
|   { 'ls' is NOT looked for in PATH environment variable.}
 | |
|   Execl ('/bin/ls -l');
 | |
| end.
 | 
