aimerneige / Resize Image

0 喜欢
0 派生
1 文件
最后活跃于 2 years ago
1 ffmpeg -i 1.jpg -vf scale="360:-1" 2.jpg

aimerneige / Remove All SoftBank

0 喜欢
0 派生
1 文件
最后活跃于 2 years ago
Remove all of the softbank package on your android phone just in one command!
1 for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep softbank); do adb shell pm uninstall --user 0 $package; done