dotfiles/home/.zsh/cmd/adu.sh

15 lines
310 B
Bash
Raw Normal View History

2022-06-04 20:25:45 +00:00
### ADB
# mnemonic [AD]b [U]nistall
# install apk via adb
apk=${1}
if [[ -z $apk ]]; then
apk=$(adb shell cmd package list packages | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[adb:uninstall]'" | awk '{print $1}' | sed 's/package://g')
fi
if [[ $apk ]]; then
echo "Trying $apk"
adb uninstall $apk
fi