mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 21:09:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			132 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			132 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| # Simply paste a header and footer to the program.
 | |
| #
 | |
| cat head.tex >  $1.tex
 | |
| cat $1.pp    >> $1.tex
 | |
| cat foot.tex >> $1.tex
 | 
