What post porocessor are you using? This is a very easy edit to do if you feel up to the task. Let's say we want the X,Y,Z position to be repeated at every line, (even if it's already at position) like so:
G01 X-0.4014 Y1.0000 Z-0.8750
G01 X0.7500 Y1.0000 Z-0.8750
G01 X0.7723 Y0.9990 Z-0.8750
G01 X0.7944 Y0.9960 Z-0.8750
G01 X0.8161 Y0.9911 Z-0.8750
Making this edit is easy. First, COPY your post processor to a new folder (we always want to have a backup). Second, open up the .cps file in a suitable editor (I prefer to use either Notepad++ or VBC) and search down a page or two for the varXoutput lines. We want to change this:
var xOutput = createVariable({prefix:"X"}, xyzFormat);
into this:
var xOutput = createVariable({prefix:"X", force:true}, xyzFormat);
Repeat this for any other value you want continuously posted out.
I am attaching a generic Chinese Post Processor I modified a while ago. I invite you to look at it's format and see how things are worded and perhaps see if this will work for you as well.
I'm NOT saying to "USE THIS POST", but rather, post out some code and see how many characters are being repeated each line. If you do decide you WANT to use this post, proceed with caution, as I've got zero idea how it will behave for your needs.
Seth Madore
Owner, Liberty Machine, Inc.
Good. Fast. Cheap. Pick two.