mirror of
https://github.com/M66B/NetGuard.git
synced 2025-01-20 06:30:21 +00:00
7 lines
431 B
Bash
7 lines
431 B
Bash
#!/bin/bash
|
|
|
|
grep -RIl "\<string name=\"msg_terms" app/src/main/res | xargs sed -i -e '/msg_terms/d'
|
|
grep -RIl "\<string name=\"msg_voluntary" app/src/main/res | xargs sed -i -e '/msg_voluntary/a\
|
|
\ \ <string name="msg_terms">By donating you agree to the <a href="http://www.netguard.me/#terms">terms & conditions</a></string>'
|
|
|
|
#grep -RIl "\<string name=\"setting_screen_wifi" app/src/main/res | xargs sed -i -e 's/xxx/yyy/g'
|