使用 apt list 命令输出到文件 (Debian)

Using the apt list command to output to a file (Debian)

我想获取从 apt list 命令生成的整个列表,并在文件中保存或查看它。在 nano 或某种形式的文本编辑器中。我想到了将结果管道化到一个文件中,任何帮助将不胜感激,谢谢!

已更新到特定场景快速解决方案是使用

apt list | awk '{print }' | tee a.txt

其中 a.txt 是文件名。

以上命令只是将 awk 的输出通过管道传输到 tee 命令,该命令向 cli 报告并写入文件