I have file on SD-CARD and my app using it as log file. Is it possible through the adb to watch file with all changes in real time? Like with tail -f /sdcard/myfile.log
tail -f /sdcard/myfile.log
This seems to work great for me:
adb shell "while true; do cat; sleep 1; done < /sdcard/myfile.log"