You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
rmE() {
|
|
test -f "$1" && rm "$1"
|
|
}
|
|
|
|
rmE build/aoc-util
|
|
rmE build/helperbot
|
|
rmE build/helperbot.service
|
|
rmE build/helperbot.tgz
|
|
rm build/plugins/*
|
|
|