Last active
June 23, 2019 15:47
-
-
Save MasterOfTheTiger/0cf33acce7e6f9b469dfdfe5f578d112 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
TUSKY_DIR=$1 | |
KEYWORDS=('gab' 'rick_roll') | |
array=(${KEYWORDS[*]}) | |
for ix in ${!array[*]} | |
do | |
sed -i "/${array[$ix]}/d" $TUSKY_DIR/app/src/main/res/values/donottranslate.xml | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment