Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道可以在另一个命令的输出之间插入特殊字符(如制表符)的 unix 命令,ls 这样输出看起来像
ls
a tab b tab c 而不是 a b c
这取决于命令,没有什么通用的。试试这个将换行符转换为制表符:
ls | tr "\n" "\t"