Windows :
for %f in (C:\your_app_path\*.apk) do adb install "%f"
Linux :
for f in *.apk ; do adb install "$f" ; done