Home > Back-end >  IBMi STRSEU - Possible to edit stream files (IFS) directly?
IBMi STRSEU - Possible to edit stream files (IFS) directly?

Time:03-12

On an IBMi system, STRSEU can only work with source members, right? No ability to interact with stream files directly.

Just thinking in the context of tracking RPG/CL/DDS source behind Git as stream files.

Assuming one wanted to use STRSEU, I can only think of this process while still tracking changes behind Git:

Open up member in SEU
Make changes, save, compile, test.
CPYTOSTMF to IFS file in tracked Git directory
Commit change and other Git things.
Proceed to push live...

Given that SEU hasn't been supported for years at this point, I'm fairly skeptical that editing stream files directly is possible. But am really just checking there isn't some workaround (besides the above) I'm unaware of.

CodePudding user response:

SEU can't work with stream files.

Use the EDTF command to edit stream files.

CodePudding user response:

Try this: From the command line

cd '/tmp'
wrklnk

enter image description here When you see the file you want to edit listed, edit it with option 2

enter image description here

You gonna need to learn the basic options valid on this editor, press F1 for help.

  • Related