If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I would like to insert "echo" followed by a number, but have the number sequentially increase on each line so that I can track where the computer is through my script. So I can pinpoint possible errors with data or my script.
eg, I want to make
line
line
line
line
line
....
into,
line
echo 1
line
echo 2
line
echo 3
line
echo 4
line
echo 5....