The >& form is only for file descriptors, passing a file name there is
a bash extension.
$ /bin/dash -c 'echo foo >&/dev/null'
/bin/dash: 1: Syntax error: Bad fd number
17 lines
310 B
Text
17 lines
310 B
Text
exec >&2
|
|
. ../skip-if-minimal-do.sh
|
|
|
|
rm -f out.log sort.log err.log
|
|
redo --keep-going 1.ok 2.fail 3.fail 4.ok 5.ok 6.fail 7.ok >err.log 2>&1 &&
|
|
exit 11 # expect it to return nonzero due to failures
|
|
sort out.log >sort.log
|
|
|
|
expect="1
|
|
2 fail
|
|
3 fail
|
|
4
|
|
5
|
|
6 fail
|
|
7"
|
|
|
|
[ "$(cat sort.log)" = "$expect" ] || exit 22
|