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.
是否可以将文件的内容附加到另一个文件。
EG:Test.txt 和 Result.txt 有一些数据。
我需要将 Test.txt 的内容附加到 result.txt 中。
这在 MQFTE 中是否可行。
不是直接的。假设目的地已经存在 Test.txt,您可以传输 result.txt,然后使用 Ant 或 Post-Transfer Call 连接这两个文件。
例如,将文件传输到暂存目录,然后使用传输后调用执行: cat ${file} >> ../final/directory/Test.txt; rm ${file}
cat ${file} >> ../final/directory/Test.txt; rm ${file}
由于转移后调用是转移的一部分,因此转移完成时将在 FTE 状态消息中捕获结果。