10 lines
141 B
Bash
Executable File
10 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
rmE() {
|
|
test -f "$1" && rm "$1"
|
|
}
|
|
|
|
rmE build/aoc-util
|
|
rmE build/helperbot
|
|
rmE build/helperbot.service
|
|
rmE build/helperbot.tgz
|