Newer
Older
function [ RESDIR ] = load_marconi( outfilename )
%UNTITLED2 Summary of this function goes here
% Detailed explanation goes here
hostfolder = outfilename(1:end-8);
RESDIR = ['../',outfilename(46:end-8),'/'];
localfolder = [RESDIR,'.'];
CMD = ['scp -r ahoffman@login.marconi.cineca.it:',hostfile,' ',localfolder];
disp(CMD);
system(CMD);