recebendo erro ao executar o comando cat "Redirecionamento de saída ambíguo".

1

durante a execução

cat test.txt | java myfile > test1.txt 2> test2.txt

Estou recebendo o erro "Redirecionamento de saída ambíguo".

meu arquivo java contém System.out e System.err.

Eu estou no ambiente csh do Unix.

    
por Harshit 23.03.2010 / 06:31

1 resposta

1

entendi em unix tcsh env eu posso executar da seguinte forma:

(cat test.txt | java myfile > test1.txt) >& test2.txt
    
por 23.03.2010 / 07:09