I have text file that was created using the Append line within a for each loop. This is my text file
a;23;k;
b;100;C;
c;11;D;
However, I want to add a header to the text file, so it looks like this
$E123;my new cat;B;22AA2;
a;23;k;
b;100;C;
c;11;D;
The use case in Combine txt files keeping 1 header row? did not fully apply to mine. Ideas will be appreciated.