[wplug] background

James O'Kane jo2y at midnightlinux.com
Tue May 20 15:25:40 EDT 2003


On Tue, 20 May 2003, Chris wrote:

> # test.sh& > test.log

Assuming your shell is bash, I would do something like this:
The 2>&1 redirects stderr to stdout and the > captures both to test.log.

test.sh 2>&1 > test.log &


-james





More information about the wplug mailing list