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 me, this replaces one backslash with a forward slash.
sed -e "s/\\\\/\//" file.txt