mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-17 13:53:49 +00:00
8 lines
162 B
Bash
8 lines
162 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for folder in $(find . -depth -type d -name "main");
|
||
|
do
|
||
|
newFolder="`echo $folder | sed 's/main/androidMain/g'`"
|
||
|
mv $folder "$newFolder"
|
||
|
done
|