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 | |
# dit zijn de paketten die IK van mijn (verder lege) telefoon heb verwijderd. | |
exit | |
adb shell pm uninstall -k --user 0 com.android.bio.face.service | |
adb shell pm uninstall -k --user 0 com.diotek.sec.lookup.dictionary | |
adb shell pm uninstall -k --user 0 com.enhance.gameservice | |
adb shell pm uninstall -k --user 0 com.facebook.appmanager | |
adb shell pm uninstall -k --user 0 com.facebook.katana | |
adb shell pm uninstall -k --user 0 com.facebook.services | |
adb shell pm uninstall -k --user 0 com.facebook.system |
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 | |
# | |
#this script contributed by Matthias Meyer | |
#note that if your $Topdir seems to be wrong (because it is empty), the script will ask you | |
#the new location. | |
# | |
#10/2009 JJK: Modified by Jeffrey J. Kosowsky | |
# add --nightly | |
# check if user eguals root or backuppc | |
#11/2009 MMT: Modified by Matthias Meyer |
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 | |
JAILS=`fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g'` | |
for JAIL in $JAILS | |
do | |
fail2ban-client status $JAIL | |
done |