Add Text to multiple Text Files
August 7th, 2016
ANyone has any solution ??
could’ve better spent that hour doing it manually..
Put all files in 1 folder then run this batch file:
@echo off
for %%x in (*.txt) do echo text line 1 >> %%x
for %%x in (*.txt) do echo text line 2 >> %%x
Change text line 1 and text line 2 to your text of course.