1
我知道關於>
和>>
,但不能捕獲下面的代碼輸出。 我有3個文件,我想使用CAT
一個接一個地打開文件。 我會使用GREP
搜索特定的字符串/消息,如果找到PASS
其他FAIL
。 代碼正在工作,但無法在文件中獲得輸出。外殼捕捉輸出文件使用>和>>
XXXXXXXXXX/XXX/XXX/postprocessing$ ls
demo.txt tag.txt tc1_adblog.txt tc2_adblog.txt tc3_adblog.txt
XXXXXXXXXX/XXX/XXX/postprocessing$ cat tc1_adblog.txt | grep 'ActivityRecord{4306a670 u0 com.example.android.notepad/.NotesList t9}' && echo "Test case 1: Pass" || echo "Test case 1: FAIL" >> result.txt
I/Timeline(1002): Timeline: Activity_windows_visible id: ActivityRecord{4306a670 u0 com.example.android.notepad/.NotesList t9} time:12020671
Test case 1: Pass
XXXXXXXXXX/XXX/XXX/postprocessing$ ls
demo.txt tag.txt tc1_adblog.txt tc2_adblog.txt tc3_adblog.txt
它工作正常。 thannks – 2014-09-24 08:33:11