mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 09:59:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			234 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			234 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example13;
 | 
						|
 | 
						|
{ Program to demonstrate the Shell function. }
 | 
						|
 | 
						|
Uses linux;
 | 
						|
 | 
						|
begin
 | 
						|
  { This will send the output of 'ls -l' to the file ls.out }
 | 
						|
  { thanks to the shell's redirection functionality }
 | 
						|
  Shell ('ls -l >ls.out')
 | 
						|
end.
 |