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.
我得到了在其中运行一系列配置单元查询的 shellscript。将每个查询的结果/日志定向到 .hivelog 文件。但有些地方 .out 文件正在使用。谁能解释我使用 .hivelog 和 .out 文件的原因/目的。
唯一的区别是您或您的程序如何解释文件名。操作系统不在乎。您的程序处理“.hivelog”文件与“.out”文件有什么不同吗?
.log和.out文件实际上做同样的事情,但略有不同。.out文件仅在进程启动时写入。进程成功启动后,.out文件将被截断。相比之下,所有日志消息都可以在.log文件中找到,包括发送到文件的进程启动消息.out。
.log
.out