Scp from remote Linux to local Windows with spaces in local path

To push a file from a Linux terminal to a Windows system, the following two examples work just fine. scp /home/user.name/file.html user.name@local.ip.num:/C:/Users/user.name/test_folder/file.htmlscp /home/user.name/file.html user.name@local.ip.num:”/C:/Users/user.name/test_folder/file.html” I need to do this where the local folder has spaces and I cannot change the name, say /C:/Users/user.name/test folder/ All of the following fail with the message scp: ambiguous target…

Read More