The IBM Personal Editor II (PE2.EXE) is a wonderful editor, but it simply will not edit a list of files specified by a wildcard such as *.txt. You can use FOR ... NEXT to accomplish much the same effect, but you will have to pay the overhead of loading the editor once for each file. Here is how we do it: FOR %%A in (%1) do CALL ED %%A Since PE2 is a licensed program, I have had to replace him with a silly batch file (ED.BAT), which in turn invokes Vern Buerg's LIST utility for a single file at a time, even though Buerg's LIST understands wildcards itself, and thus does not need the trick! The actual "%1" will be: ADVBAT0?.TXT, the first 9 text files here.