7 lines
92 B
Bash
Executable File
7 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
find ./proto-files -name java -type d -exec rm -fR {} 2> /dev/null \;
|
|
|