Changeset 741
- Timestamp:
- Aug 18, 2011 6:33:16 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mrun
r738 r741 225 225 # 06/04/11 - BjornM - bugfix for runs with mpt on lcsgi 226 226 # 17/08/11 - Siggi - extensions for impi library 227 # 18/08/11 - Siggi - bugfix for local append of output files with suffix (.nc) 227 228 228 229 … … 4162 4163 if [[ "${actionout[$i]}" = "a" ]] 4163 4164 then 4164 printf "\n >>> OUTPUT: ${localout[$i]} append to ${pathout[$i]}\n" 4165 cat ${localout[$i]} >> ${pathout[$i]} 4165 if [[ "${extout[$i]}" != " " && "${extout[$i]}" != "" ]] 4166 then 4167 printf "\n >>> OUTPUT: ${localout[$i]} append to ${pathout[$i]}.${extout[$i]}\n" 4168 cat ${localout[$i]} >> ${pathout[$i]}.${extout[$i]} 4169 else 4170 printf "\n >>> OUTPUT: ${localout[$i]} append to ${pathout[$i]}\n" 4171 cat ${localout[$i]} >> ${pathout[$i]} 4172 fi 4166 4173 fi 4167 4174
Note: See TracChangeset
for help on using the changeset viewer.