mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 15:39:24 +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.'
 |