8 lines
147 B
Bash
Executable File
8 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
day="$1"
|
|
part="$2"
|
|
|
|
day="$(printf '%02d' "$day")"
|
|
|
|
rm -r -f run "Day${day}/Part${part}.hi" "Day${1}/Part${part}.o" "Day${day}/zig-cache"
|