连接文件并打印

发布于 2024-11-08 07:10:19 字数 196 浏览 1 评论 0原文

我需要连接文件并打印它。不过,我还想在连接时添加标头(文件名),以区分文件。

示例:

file1.txt
content of file1.txt

file2.txt
content of file2.txt

....
....

有哪些方法可以解决这个问题?我正在使用 lp 命令进行打印。

I need to concatenate files and print it. However I also want to add a header (name of the file) when concatenating, to distinguish the files.

Example:

file1.txt
content of file1.txt

file2.txt
content of file2.txt

....
....

what are the ways of going about this? I am using the lp command to print.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2024-11-15 07:10:19
for i in file?.txt ; do echo $i ; cat $i ; done | lp
for i in file?.txt ; do echo $i ; cat $i ; done | lp
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文