标签: 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)
上面的代码不起作用;它给出了错误缺少重定向名。 我该如何解决?