-
-
Save rpappalax/9262523 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
if [ "$1" == "" ]; then | |
echo 'Pulls and pushes pref.js to your phone.' | |
echo 'Usage: ./modPref.sh [pull|push|catfxa|rmfxa]' | |
exit | |
fi | |
echo "Plug in your device" | |
adb wait-for-device | |
echo "Found device" | |
PROFILE=$(adb shell echo -n "/data/b2g/mozilla/*.default") | |
PREFS_JS=$PROFILE/prefs.js | |
if [ $1 == "pull" ]; then | |
root=eval adb shell echo -n "/data/b2g/mozilla/*.default" | |
pref="/prefs.js" | |
echo $root$pref | |
echo "Copied prefs.js to local, please edit file" | |
adb pull $PREFS_JS &>/dev/null || echo 'Error pulling pref' | |
elif [ $1 == "push" ]; then | |
echo 'pushing prefs.js to b2g device' | |
adb shell stop b2g | |
adb push prefs.js $PREFS_JS | |
adb shell start b2g | |
echo 'restarting b2g device' | |
elif [ $1 == "catfxa" ]; then | |
echo "reading $PROFILE/signedInUser.json" | |
adb shell cat $PROFILE/signedInUser.json | |
elif [ $1 == "rmfxa" ]; then | |
echo "delete $PROFILE/signedInUser.json" | |
adb shell stop b2g | |
adb shell rm $PROFILE/signedInUser.json | |
adb shell start b2g | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment