Thursday, August 6, 2020

view largest installed debian packages on unix

More details on this link https://www.commandlinefu.com/commands/view/3842/list-your-largest-installed-packages-on-debianubuntu

dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 10

Tuesday, March 24, 2020

pull multiple files from android via adb

Got answer from https://stackoverflow.com/questions/11074671/adb-pull-multiple-files

adb shell 'ls /sdcard/DCIM/Camera/20200327*.mp4' | tr -d '\r' | xargs -n1 adb pull