mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 21:29:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			220 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			220 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| program example56;
 | |
| 
 | |
| uses linux;
 | |
| 
 | |
| { Program to demonstrate the Shell function }
 | |
| 
 | |
| Var S : Longint;
 | |
| 
 | |
| begin
 | |
|   Writeln ('Output of ls -l *.pp');
 | |
|   S:=Shell ('ls -l *.pp');
 | |
|   Writeln ('Command exited wwith status : ',S);
 | |
| end.
 | 
