使用 MQFTE 追加?
是否可以将一个文件的内容附加到另一个文件。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不直接。假设 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.