I want to be able to use sed to take an input such as:
C:\\Windows\\Folder\\File.txt
to
C:/Windows/Folder/File.txt <
C:/Windows/Folder/File.txt
for just translating one char into another throughout a string, tr is the best tool:
tr
tr '\\' '/'