Changeset 481
- Timestamp:
- 05/18/09 16:18:52 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/UpdateArchive/updatearchive.m
r480 r481 25 25 [status,list]=system('ls -l | grep -v CVS | awk ''{printf("%s|",$9);}'' '); %only works on *nix systems. 26 26 list=strsplit(list,'|'); 27 %Go through list of decks, and run the deck runme.m files.27 %Go through list of decks, and run the deck updatearchive.m files. 28 28 for i=2:length(list)-1, 29 29 eval(['cd ' list{i}]); 30 updatearchive; 30 if nargin==1 31 updatearchive(varargin{1}); 32 else 33 updatearchive; 34 end 31 35 cd .. 32 36 end
Note:
See TracChangeset
for help on using the changeset viewer.