문제

I am writing a batch script that extracts downloaded torrents and would now like to log the output from unrar.exe to a text file. The output I have in mind are things like failure due to corrupted archives etc. or simply that the operation was successful.

Any ideas on how to solve this?

Thanks in advance!

도움이 되었습니까?

해결책

You use redirection:

unrar > logfile.txt

To also redirect stderr:

unrar > logfile.txt 2>&1

다른 팁

Just the STDOUT

unrar>"output.txt"

Only the errors (ERROUT)

unrar 2>"errors.txt"

Both STDOUT and ERROUT

unrar 2>&1 "both.txt"

Or both in separate files:

unrar 2>"errors.txt" >"output.txt"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top