6 lines
		
	
	
		
			129 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			129 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| sed -f makecursors.sed $1 > .makecursors.tmp
 | |
| awk '{printf "%s = %s,\n", $1, $2}' .makecursors.tmp
 | |
| rm .makecursors.tmp
 | 
