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.
我在 bash 脚本中有一个自定义 motd,它通过这个命令打印 cowsay,
/usr/games/fortune | cowsay -f www
我想知道是否有格式化此输出的方法,例如通过制表符或空格移动输出?我是否必须遍历文本手动格式化每一行,还是有更短/更好的方法?
提前致谢
您可以使用sed在输出前添加一些其他文本。以下命令在每行的开头添加一个制表符:
sed
/usr/games/fortune | cowsay -f www | sed -e 's/^/\t/'