Ignore:
Timestamp:
12/22/08 12:08:29 (15 years ago)
Author:
pinsard
Message:

add matlab startup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ircaam_profile.sh

    r7 r12  
    1010# 
    1111# 
    12 # Online usage  
     12# Online usage 
    1313# :: 
    1414# 
    1515# $ . ./ircaam_profile.sh -d directory -i indir -o outdir -t tempdir 
    1616# 
    17 # In ${HOME}/.profile, add the following line  
     17# In ${HOME}/.profile, add the following line 
    1818# :: 
    1919# 
     
    2323# =========== 
    2424# 
    25 #  define IRCAAM environnement 
    26 # 
    27 # 
    28 # ${IRCAAM} 
    29 # 
    30 # ${IRCAAM_LOG} ++ 
    31 # 
    32 # ${IRCAAM_ID} 
    33 # 
    34 # ${IRCAAM_OD} 
     25# define IRCAAM environnement 
     26# 
     27# ${IRCAAM} is the base directory of tools. 
     28# 
     29# ${IRCAAM_LOG} is the directory where log files  will be written. 
     30# 
     31# ${IRCAAM_ID} is the directory where input files must be. 
     32# 
     33# ${IRCAAM_OD} is the directory where output files will be written. 
    3534# 
    3635# MANPATH++ 
     36# 
     37# SEE ALSO 
     38# ======== 
     39# 
     40# for matlab/octave environment : 
     41# 
     42# ircaam_startup.m_ 
     43# 
     44# .. _ircaam_startup.m : ircaam_startup.m.html 
    3745# 
    3846# EXAMPLES 
     
    7482# ==== 
    7583# 
    76 # matlab/octave path 
    7784# 
    7885# EVOLUTIONS 
     
    198205IRCAAM_LOG=${tempdir} 
    199206export IRCAAM_LOG 
    200 if [ ! -d ${IRCAAM_LOG} ]  
     207if [ ! -d ${IRCAAM_LOG} ] 
    201208then 
    202209  mkdir -p ${IRCAAM_LOG} 
    203210  echo "${command} : iii : creation of \${IRCAAM_LOG}" 
    204 fi  
     211fi 
    205212# check for permission on IRCAAM_LOG 
    206213if [ ! -x ${IRCAAM_LOG} ] 
     
    223230IRCAAM_ID=${indir} 
    224231export IRCAAM_ID 
    225 if [ ! -d ${IRCAAM_ID} ]  
     232if [ ! -d ${IRCAAM_ID} ] 
    226233then 
    227234  mkdir -p ${IRCAAM_ID} 
    228235  echo "${command} : iii : creation of \${IRCAAM_ID}" 
    229 fi  
     236fi 
    230237# check for permission on IRCAAM_ID 
    231238if [ ! -x ${IRCAAM_ID} ] 
Note: See TracChangeset for help on using the changeset viewer.