adb push没有任何打印

时间:2012-10-26 18:27:53

标签: shell batch-file adb

我使用以下代码

adb push %DESKTOP_PATH%\Bill.txt %MOBILE_PATH%

我收到了

1663 KB / s(在0.030秒内51182字节)

有没有办法不显示以上信息?

2 个答案:

答案 0 :(得分:3)

adb push %DESKTOP_PATH%\Bill.txt %MOBILE_PATH% 2>NUL >NUL

Using command redirection operators

答案 1 :(得分:1)

将输出重定向到nul

adb push %DESKTOP_PATH%\Bill.txt %MOBILE_PATH% > nul