Linux:如何同时使用文件作为输入和输出?

前端之家收集整理的这篇文章主要介绍了Linux:如何同时使用文件作为输入和输出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚在bash中运行以下代码
uniq .bash_history > .bash_history

我的历史档案最终完全空了.

我想在写入之前我需要一种方法来读取整个文件.
怎么做的?

PS:我显然想过使用临时文件,但我正在寻找更优雅的解决方案.

解决方法

我建议使用 moreutils的海绵.从联机帮助页:
DESCRIPTION
  sponge  reads  standard  input  and writes it out to the specified file. Unlike
  a shell redirect,sponge soaks up all its input before opening the output file.
  This allows for constructing pipelines that read from and write to the same 
  file.

要将此问题应用于您的问题,请尝试:

uniq .bash_history | sponge .bash_history
原文链接:https://www.f2er.com/linux/402847.html

猜你在找的Linux相关文章