You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 12345678 | #!/bin/bash
cp -r src/resources/* output/
for f in src/pages/*.m4; do
m4 src/template.m4 "$f" | sed '/^$/d' > output/"`basename -s .m4 "$f"`.html";
done;
 |