brew leaves
用一列显示结果,而brew list
则用多列显示(实际数字取决于终端窗口的大小)。如何使用brew leaves
达到相同的效果?
答案 0 :(得分:0)
编辑(简单得多):brew leaves | column
(原始答案)
只需使用:brew leaves | column -c $(tput cols)
说明:
|
是一个管道,将brew leaves
的输出连接到column -c $(tput cols)
的输入
-c选项确定创建的表的宽度(c代表控制台列,而不代表表列)。
find the width & height of a terminal window:
tput cols
告诉您列数。
$(<your command>)
可让您将命令输出用作变量。