I am new to batch files and so far, I have figured out how to make a txt file with multiple lines
(
echo one
echo two
echo three
)>hello.txt
I found a way to do this, but it pastes the file in the same location and simply copies the txt file into another folder, but I want to put this txt file directly into that folder. Could you show me how to modify this code so that I can put this in a specific folder. Or give me an example of how you would do it this way, or another way? Thank You!