adb shell cd test >LOG.txt 2>/dev/null
首先这个test文件夹是不存在的,所以肯定会报找不到错误,但是这个信息本人不希望输出到LOG.txt,2>/dev/null过滤不掉adb shell这个传出的错误信息,问一下各位有什么方法能过滤掉吗,谢谢
首先这个test文件夹是不存在的,所以肯定会报找不到错误,但是这个信息本人不希望输出到LOG.txt,2>/dev/null过滤不掉adb shell这个传出的错误信息,问一下各位有什么方法能过滤掉吗,谢谢
解决方案
60
显然adb shell cd test会报错,一般来说是这样的:
/system/bin/sh: cd: /test: No such file or directory
按你的意思是不希望输出到LOG.txt里面,可以试试这个
adb shell cd test 2>Log.txt
/system/bin/sh: cd: /test: No such file or directory
按你的意思是不希望输出到LOG.txt里面,可以试试这个
adb shell cd test 2>Log.txt