将 qshell(qsh) 命令的输出写入本地数据区
我想将 qshell 命令的输出写入本地数据区域,以便程序可以全局使用它。是否有某种方法可以从 stdout 文件写入本地数据区域。我希望通过 CL 来完成它。它很紧急谢谢
i want to write the output of a qshell command to local data area so that it could be globally used by programs.is there some way to write from stdout file to local data area .I want it to be done through CL..its urgent thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为您无法从 qshell 更新 *LDA ...因为通过它运行的命令,我认为是在单独的工作中。
您可能想考虑使用命名数据队列...您可以使用
dataq
命令。最好使用带键的数据队列......但我不确定如何在 dataq 命令上指定键。
I don't think you can update the *LDA from qshell ... as commands run through it, I think, are in a separate job.
You might want to consider using a named data queue ... you can use the
dataq
command from qshell.It would probably be best to use a keyed data queue ... but I'm unsure how you would specify the key on the dataq command.
使用
iSeries dtarea
构造为:数据区域
qgpl/robtest
是先前创建的在这种情况下,我需要
IFS
文件的行(记录)计数,这样 CLp 就可以获取它并拆分大文件。use
iSeries dtarea
construct as:the data area
qgpl/robtest
is previously createdIn this case I needed line (record) count of
IFS
file, so CLp could get it and split big files down.