I need to make a script that can write one line of text to a text file in the same directory as the batch file.
@echo off Title Writing using Batch Files color 0a
echo Example Text > Filename.txt echo Additional Text >> Filename.txt
@ECHO OFF Title Writing Using Batch Files color 0a echo Example Text > Filename.txt echo Additional Text >> Filename.txt