18 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| make essai
 | |
| 
 | |
| for foo in $(seq 0 89)
 | |
| do
 | |
| 	./essai $foo > a.scratch
 | |
| 	fname=$(printf "F/%04d.tga" $foo)
 | |
| 	echo $fname
 | |
| 	genplot2 a.scratch $fname
 | |
| 
 | |
| done
 | |
| 
 | |
| convert -delay 10 F/????.tga foo.gif
 | |
| 
 | 
