使用 MQFTE 追加?

发布于 2024-10-23 13:05:47 字数 133 浏览 1 评论 0原文

是否可以将一个文件的内容附加到另一个文件。

EG:Test.txt 和 Result.txt 有一些数据。

我需要将 Test.txt 的内容附加到 result.txt。

这在 MQFTE 中可能吗?

Is it possible to append the contents of a file to another file.

EG: Test.txt and Result.txt has some data.

I need to append the contents of Test.txt with result.txt.

Is this possible in MQFTE.

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

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

发布评论

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

评论(1

稀香 2024-10-30 13:05:47

不直接。假设 Test.txt 已存在于目标位置,您可以传输 result.txt,然后使用 Ant 或传输后调用来连接两个文件。

例如,将文件传输到暂存目录,然后使用传输后调用来执行:
cat ${file} >>> ../final/directory/Test.txt; rm ${file}

由于转接后调用是转接的一部分,因此转接完成后将在 FTE 状态消息中捕获结果。

Not directly. Assuming Test.txt already exists at the destination, you can transfer result.txt and then use Ant or a Post-Transfer Call to concatenate the two files.

For example, transfer the file to a staging directory and then use a post-transfer call to execute:
cat ${file} >> ../final/directory/Test.txt; rm ${file}

Since the post-transfer call is part of the transfer, the results will be captured in the FTE status message at completion of the transfer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文