adb shell - 模拟“tail”命令?

时间:2015-06-22 13:26:21

标签: android tail

是否有可能模拟" tail -f"在android?

我想将一个文件中的所有新数据写入另一个文件,就像:

  

" tail -f n 0 a.txt> b.txt"

1 个答案:

答案 0 :(得分:0)

是的,可以使用一些shell hackery,不需要busybox。试试这个:

adb shell "(cat > /dev/null; while true; do cat; sleep 1; done) < a.txt > b.txt"

删除初始cat以模拟常规tail -f

(相关:https://stackoverflow.com/a/44288388/893755