mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 14:12:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			153 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			153 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| echo 'starting to convert. '
 | |
| for f in $*
 | |
| do
 | |
|   sed s/\\.html/\\.htm/g <$f >`dirname $f`/`basename $f .html`.htm
 | |
|   echo -n '.'
 | |
| done
 | |
| echo 'Done.'
 | 
