├── .gitignore ├── LICENSE ├── README.md ├── javascript └── target_blank_link.js ├── python ├── gpush.py └── logcatPkg.py ├── ruby ├── add_prefix_files.rb ├── checkJson.rb ├── removeMergedBranches.rb ├── removeOldFiles.rb └── searchBytecode.rb └── shell ├── activityLaunchTime.sh ├── clearAppData.sh ├── debugInfo.sh ├── dumpCurrentActivity.sh ├── gcommit.sh ├── gfind.sh ├── gfindx.sh ├── hdreset.sh ├── lsSize.sh ├── myip.sh ├── recentlyBranches.sh ├── undoGitCommit.sh ├── unmergedBranches.sh └── untrack.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/README.md -------------------------------------------------------------------------------- /javascript/target_blank_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/javascript/target_blank_link.js -------------------------------------------------------------------------------- /python/gpush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/python/gpush.py -------------------------------------------------------------------------------- /python/logcatPkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/python/logcatPkg.py -------------------------------------------------------------------------------- /ruby/add_prefix_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/ruby/add_prefix_files.rb -------------------------------------------------------------------------------- /ruby/checkJson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/ruby/checkJson.rb -------------------------------------------------------------------------------- /ruby/removeMergedBranches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/ruby/removeMergedBranches.rb -------------------------------------------------------------------------------- /ruby/removeOldFiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/ruby/removeOldFiles.rb -------------------------------------------------------------------------------- /ruby/searchBytecode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/ruby/searchBytecode.rb -------------------------------------------------------------------------------- /shell/activityLaunchTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/activityLaunchTime.sh -------------------------------------------------------------------------------- /shell/clearAppData.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | adb shell am start -a "android.settings.APPLICATION_DETAILS_SETTINGS" -d "package:$1" 3 | -------------------------------------------------------------------------------- /shell/debugInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/debugInfo.sh -------------------------------------------------------------------------------- /shell/dumpCurrentActivity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/dumpCurrentActivity.sh -------------------------------------------------------------------------------- /shell/gcommit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git commit -a 3 | -------------------------------------------------------------------------------- /shell/gfind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/gfind.sh -------------------------------------------------------------------------------- /shell/gfindx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/gfindx.sh -------------------------------------------------------------------------------- /shell/hdreset.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git reset --hard 3 | -------------------------------------------------------------------------------- /shell/lsSize.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | du -sh * 3 | -------------------------------------------------------------------------------- /shell/myip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/myip.sh -------------------------------------------------------------------------------- /shell/recentlyBranches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidyue/DroidScripts/HEAD/shell/recentlyBranches.sh -------------------------------------------------------------------------------- /shell/undoGitCommit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git reset HEAD~ -------------------------------------------------------------------------------- /shell/unmergedBranches.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git branch --no-merged master 3 | -------------------------------------------------------------------------------- /shell/untrack.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | git reset HEAD $1 --------------------------------------------------------------------------------