No, the script will not manage log files. With command line utilities that send their output to standard out/standard error, you use redirection to send that output to a desired destination. The flac2mp3 script is no exception.
Here are some examples: http://www.robvanderwoude.com/redirection.php When you redirect, you will not see any of the output that you've redirected. You can use a second cmd prompt window to view the log file. If you download and use the cygwin tools, you'll have a *nix shell to work with, and all rich command line tools that are available. The "tee" and/or "tail -f" commands would be useful here. You may want to consider redirecting STDOUT to one file, and STDERR to another. I don't know how the output and errors will look, so you'll have to experiment with what works best for you. -- MrC ------------------------------------------------------------------------ MrC's Profile: http://forums.slimdevices.com/member.php?userid=468 View this thread: http://forums.slimdevices.com/showthread.php?t=66321 _______________________________________________ ripping mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/ripping
