2

指示 :

adb push test.mp4 /sdcard/test.mp4

コマンドの出力:

2717 KB/s (17104177 bytes in 6.146s)

上記の出力を1つのテキストファイルに書きたいです。

次のコマンドを試しました:

adb push test.mp4 /sdcard/test.mp4 > Result.txt

それでもResult.txtファイルは空白です。

アイデアがあれば助けてください!!!

解決策がperlまたはpythonを使用する場合でも、それは私にとっては問題ありません。

4

1 に答える 1

5

bash を使用していると仮定すると、次のようにリダイレクトできますstderr

adb push test.mp4 /sdcard/test.mp4 2> Result.txt

または両方stdoutstderr:

adb push test.mp4 /sdcard/test.mp4 > Result.txt 2>&1
于 2013-08-28T05:44:26.543 に答える