答案1
答案2
cat<tmp.1|wc>tmp.3
这会计算 中的字节数tmp.1
,将结果写入tmp.3
并且不打印任何内容。它相当于
wc <tmp.1 >tmp.3
或者
<tmp.1 wc >tmp.3
您看到打印的输出,即:
[3] Done ls --color=auto -al | wc
是 shell 告诉您之前在后台运行的命令(使用&
)已完成。
cat<tmp.1|wc>tmp.3
这会计算 中的字节数tmp.1
,将结果写入tmp.3
并且不打印任何内容。它相当于
wc <tmp.1 >tmp.3
或者
<tmp.1 wc >tmp.3
您看到打印的输出,即:
[3] Done ls --color=auto -al | wc
是 shell 告诉您之前在后台运行的命令(使用&
)已完成。