I have loads of text files that I want to add the following text to at the end of the file:-
!*************************************************************
! $Log: $ \verbatim
!
! \endverbatim
!*************************************************************
Is there a way to find "end-of-file" in either TextPad or WildEdit?
Add text at the end of each file
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
The easiest way IMO would be to do this in batch: put the text you want to append in a separate file, say "footer" then from a DOS prompt run something like this:(Make sure you type two greater-than signs, or you'll overwrite the original files)
Code: Select all
for %f in (*.txt) do type C:\some\other\path\footer >> %f