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
050-10:17:40 PearlConfig.m:166 DBG | MPiOSConfig.build = [ ->] 22222222222222.5 | |
050-10:17:40 PearlConfig.m:166 DBG | MPiOSConfig.version = [ ->] 2.5 | |
050-10:17:40 PearlConfig.m:166 DBG | MPiOSConfig.copyright = [ ->] © 2011-2018 | |
050-10:17:41 MPiOSAppDelegate.m:607 WRN | Crashlytics API key not set. Crash logs won't be recorded. | |
050-10:17:41 PearlHangDetector.m:89 TRC | hangTime=0.000119 | |
050-10:17:41 PearlAppDelegate.m:97 INF | M. Password (MasterPassword) 2.5 (22222222222222.5) (GIT: 2.5-ios-187-g61f47421-dirty) on platform: x86_64, profile: No profile. | |
050-10:17:41 PearlKeyChain.m:186 TRC | SecItemCopyMatching({ | |
acct = deviceIdentifier; | |
class = genp; | |
pdmn = dku; |
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 | |
# Tab complete for jailbroken iDevices | |
# Tested on iOS 8.1.2 / iPhone 5s on 12/12/2014 | |
# Depends on the terminal/command line package 'Open' being installed. | |
# | |
# YOU MUST add this line: | |
# source ~/.bashrc | |
# | |
# TO this file: | |
# /etc/profile |
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 | |
# Clear screen, history and trunicate files | |
_clrTabComplete() { | |
local cur | |
COMPREPLY=() | |
cur=${COMP_WORDS[COMP_CWORD]} | |
COMPREPLY=( $( compgen -W 'normal full log sulog help' -- $cur ) ) | |
return 0 | |
} |
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 | |
# clamav "install the latest version from official source" script | |
# You should probably uninstall clamav prior to running this, | |
# but you don't have to. Enjoy! | |
# Usage: | |
# clamav-upgrade 0.98.5 # upgrade to version 0.98.5 | |
if [[ -z $1 ]]; then | |
printf "Please provide the clamav version in the following format\n \ | |
(should match the sourceforge website): 0.98.5\n" |