[Solved] How to fix missing out ‘if’ [closed]
I would use if/else if like the comment above. But could you not just use; if (life <= 0) solved How to fix missing out ‘if’ [closed]
I would use if/else if like the comment above. But could you not just use; if (life <= 0) solved How to fix missing out ‘if’ [closed]
Except the way Compo suggested (using more with +1 which will exclude the first line), you can use a for /F loop: @echo off for /F “skip=1 delims=” %%A IN (file.csv) do (echo %%A)>>file1.csv which, with the option skip=1 will skip the first line. Another way would be to loop through the output of more … Read more