Skip to content

Instantly share code, notes, and snippets.

@MasterOfTheTiger
Last active June 23, 2019 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MasterOfTheTiger/0cf33acce7e6f9b469dfdfe5f578d112 to your computer and use it in GitHub Desktop.
Save MasterOfTheTiger/0cf33acce7e6f9b469dfdfe5f578d112 to your computer and use it in GitHub Desktop.
#!/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