Linux / Debian – moreutils中的’小便’有什么作用?

前端之家收集整理的这篇文章主要介绍了Linux / Debian – moreutils中的’小便’有什么作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近发现了 ‘moreutils’ package in Debian (and Ubuntu).它是一组方便的unix工具.

其中一个命令是’小便’.手册页说:

pee is like tee but for pipes.

@H_404_7@

然而,它是一个简短的手册页,I have filed a bug about it.有谁知道它的作用,如何使用它,为什么人们会使用它?

解决方法

这是你可以用小便做的:
seq 5 -1 1 > file
cat file |pee 'sort -u > sorted' 'sort -R > unsorted'

所以小便使用shell管道而不是文件.

bash不需要撒尿,它可以打开shell命令作为文件

cat file |tee >(sort -u > sorted) >(sort -R > unsorted)
原文链接:https://www.f2er.com/linux/402269.html

猜你在找的Linux相关文章