是否有可能模拟" tail -f"在android?
我想将一个文件中的所有新数据写入另一个文件,就像:
" tail -f n 0 a.txt> b.txt"
答案 0 :(得分:0)
是的,可以使用一些shell hackery,不需要busybox。试试这个:
adb shell "(cat > /dev/null; while true; do cat; sleep 1; done) < a.txt > b.txt"
删除初始cat
以模拟常规tail -f
。