8 lines
		
	
	
	
		
			133 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			133 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| day="$1"
 | |
| part="$2"
 | |
| 
 | |
| day="$(printf '%02d' "$day")"
 | |
| 
 | |
| rm -f ./run ./luac.out
 | |
| rm -f "day${1}/part${2}.hi" "day${1}/part${2}.o"
 | 
