4 lines
109 B
Bash
4 lines
109 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
find -mindepth 2 -name build.gradle | xargs -I {} sh -c "dirname {} | xargs cp gradle.properties"
|