diff --git a/scripts/clean.sh b/scripts/clean.sh new file mode 100644 index 0000000..639dafc --- /dev/null +++ b/scripts/clean.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +working_dir=$(pwd) +proto_dirs=($(pwd)/protos) # ./protos/ + +# Find all files with `pb2` and delete them +find "$proto_dirs" -type f -name "*pb2*" -delete \ No newline at end of file