execute_jd

PURPOSE ^

SYNOPSIS ^

function execute_jd(filename)

DESCRIPTION ^

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function execute_jd(filename)
0002     
0003 if strcmp(computer,'PCWIN')
0004     dos(filename);
0005 elseif strcmp(computer,'MAC') 
0006     eval(['! ',filename]);
0007 else
0008     if filename(1)~='.' && filename(1)~='/',
0009         eval(['! ./',filename]);
0010     else
0011         eval(['! ',filename]);
0012     end
0013 end

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.