如何使用tee命令将输出重定向到tcsh shell中的两个不同命令

时间:2018-09-21 06:58:04

标签: tail tee unix-head

我试图对 awk 脚本的输出进行排序,该脚本包含两行标题信息(不应该对其进行排序)。 为此,我在 tcsh shell 中使用了 tee 命令,如下所示

 awk -f scr.awk tmp.txt | tee >(head -n 2 > tm) >(tail -n +3 | sort -k1,1 >> tm)

上面的代码不起作用;它给出了错误缺少重定向名。 我该如何解决?

0 个答案:

没有答案