Even "scp" cannot handle spaces in filenames correctly:

$ touch "test file"
$ mkdir test_dir                           

$ scp test\ file test_dir/
cp: cannot stat `file': No such file or directory

$ scp "test file" test_dir/
cp: cannot stat `file': No such file or directory


$ touch test_file
$ mkdir "test dir"

$ scp test_file test\ dir
cp: `dir': specified destination directory does not exist
Try `cp --help' for more information.

$ scp test_file "test dir"
cp: `dir': specified destination directory does not exist
Try `cp --help' for more information.

-- 
USB disk is automount to "/media/USB DISK" mount point
https://launchpad.net/bugs/54536

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to