Created
February 10, 2017 17:23
-
-
Save jgabrielfreitas/74b898567a2f68ddeaf75f10a85de9e4 to your computer and use it in GitHub Desktop.
remove *.txt files from Stone's SDK for android
This file contains hidden or 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
| path="$PWD" | |
| for item in $(find "$path" -name \*.jar) | |
| do | |
| filename=`basename $item` | |
| if grep -q "sdk" <<<$filename; then | |
| 7z d "$item" org/apache/commons/codec/language/bm/ | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment