Details
-
Bug
-
Status: Closed (View Workflow)
-
High
-
Resolution: Fixed
-
6.02/04
-
None
-
Any
Description
In ROOT 5, .> also redirected stdout of user code. This has changed. Test case:
$ cat hello.C
|
void hello() {
|
cout << "Hello!" << endl;
|
return;
|
}
|
$ root -l -b
|
root [0] .> aa.log
|
root [1] .x hello.C
|
Hello!
|
In ROOT 5, "Hello!" ends up in aa.log:
$ root -l -b
|
root [0] .x hello.C > aa.log
|
root [1]
|