Changeset 530 for palm/trunk/SCRIPTS/palmplot
- Timestamp:
- Apr 1, 2010 7:36:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmplot
r529 r530 12 12 # blank separated lists instead of comma 13 13 # separated lists 14 # 01/04/10 - Rieke - bugfix - treatment of special character * 15 # in NCL variables containing lists corrected 14 16 15 17 … … 125 127 # SUBSTITUTING BLANKS WITH COMMAS IN 126 128 # PARAMETERS CONTAINING LISTS OF VARIABLES 127 value=`echo $value | sed 's/ /,/g'` 129 value=`echo $value | sed 's/ /,/g'` 130 131 # ALLOWING THE USAGE OF COMMA SEPARATED LIST AS WELL 128 132 if [[ "$value" == ${value#,} ]] 129 133 then … … 133 137 then 134 138 value=$value, 135 fi 139 fi 140 value=${value/%\*,,/\*,} 141 136 142 break 137 143 fi
Note: See TracChangeset
for help on using the changeset viewer.