Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过 adb 或 adb shell 查看简单的文本文件?我知道有 ADT 附带的 fileExplorer 但它不是很方便,我每次都拉一个文件,然后打开它,
命令行上有快速的方法吗?
adb shell cat /sdcard/file.txt
cat是在linux中显示文本文件的命令。
cat
用法:cat [-beflnstv] [-] [文件...]
cat 是用于在 adb 中打开文本文件的命令。
cat txtfile
或者
cat txtfile.text