I have thousands of .txt files. These text files include one string. (Every file has different string.)
I want to edit these strings but i don't want to manually open each file one-by-one for editing. So i want to merge all these files into a single .txt file and after my editing done, i want to seperate/split them again with the same file names they were owned before i merged.
For example;
i have these text files.
lorem.txt (hi, this is an example line.)
ipsum.txt (hi, this is another line.)
merol123.txt (hi, just another line.)
*
merged.txt >>> edited and ready to split again. >> result needs to be like this;
*
lorem.txt (hi, this is edited line.)
ipsum.txt (another edited line.)
merol123.txt (another edited line. number 4847887)
Note: Sentences inside brackets represents string inside txt file.
Is it possible? I am waiting your helps, thanks!