10 lines
107 B
Bash
Executable File
10 lines
107 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# script to do the thing
|
|
|
|
set -euxo pipefail
|
|
|
|
rm -f output.log
|
|
rm -rf logs
|
|
rm -rf out
|