set times: Broken pipe error (scp -p -r)

8 views (last 30 days)
yonatan s
yonatan s on 18 Jun 2018
Commented: Walter Roberson on 18 Jun 2018
I'm running a code on a cluster and download the outputs with Matlab. I get the following message in the command window upon downloading:
Outputs/spinEq1: set times: Broken pipe
(Outputs/spinEq1 is the directory in my computer I'm downloading to).
the unix command returns 1.
running the code without -p works perfectly, but it is important to me to preserve the modification and access times from the original file.
name='spinEq1';
download=1;
if download
disp ('downloading...');
cmd=strcat('scp -p -r shimoni@chemfarm/work/shimoni/6_SampleRun/',name,' Outputs');
unix (cmd);
disp ('download finished');
end
back=pwd;
cd (strcat('Outputs/',name));
thank you.

Answers (0)

Categories

Find more on Downloads in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!