Linux – Redirecting Output to File

arch linuxio-redirectionlinux

I am looking forward to run commands and log their output in a temporary log file to be read later on by different processes.

So, for example: rc.d start ntpd > progress.txt

Returns:
::Daemon scriptntpddoes not exist or is not executable.

I assume, that since it's an error it doesn't get redirected, but, is there a way to force redirect everything to file?

Best Answer

You only redirect STDOUT to progress.txt but errors are normally written to STDERR.

To redirect both STDOUT and STDERR to progress.txt try:

rc.d start ntpd &> progress.txt

You'll find many additional information on this topic if you search for .

Related Question