Skip to content
Snippets Groups Projects
load_marconi.m 414 B
function [ RESDIR ] = load_marconi( outfilename )
%UNTITLED2 Summary of this function goes here
%   Detailed explanation goes here
    hostfolder  = outfilename(1:end-8);
    hostfile    = [hostfolder,'/out*'];
    RESDIR      = ['../',outfilename(46:end-8),'/'];
    localfolder = [RESDIR,'.'];
    CMD = ['scp -r ahoffman@login.marconi.cineca.it:',hostfile,' ',localfolder];
    disp(CMD);
    system(CMD);
end