Created
May 3, 2019 15:26
-
-
Save danielgomezrico/4c350eabba2385fd1b715e14f950fce0 to your computer and use it in GitHub Desktop.
Add empty space recursively on each file for current folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in $(find . -name '*.kt') | |
do | |
echo "" >> "$f" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment