How to list package and application name of a couple of APK files

First download and install apktool. Then enter the directory with the APK files and execute something like this:
aapt_bin="$(which aapt)"
[ -n "$aapt_bin" -a -x "$aapt_bin" ] && find . -type f -iname '*.apk' -print0 | while IFS="" read -r -d "" j; do IFS="$(printf '\nX')"; IFS="${IFS%X}"; echo "${j}: $("$aapt_bin" dump badging "$j" 2> /dev/null | egrep '^(application|package):' | sort | sed -r "s/.*((name|label)='[^']*').*/\1/" | tr '\n' ' ')"; done