Index: /issm/trunk/src/m/utils/Exp/expmaster.m
===================================================================
--- /issm/trunk/src/m/utils/Exp/expmaster.m	(revision 1301)
+++ /issm/trunk/src/m/utils/Exp/expmaster.m	(revision 1302)
@@ -22,4 +22,11 @@
 	error('expmaster usage: expmaster(newfile,varargin)')
 elseif exist(newfile),
+	%recursive call to expmaster if file already exists
+	if nargin==1,
+		expmaster(newfile,newfile);
+		return;
+	end
+
+	%check modification
 	choice=input(['A file ' newfile ' already exists, do you want to modify it? (y/n)'],'s');
 	if ~strcmpi(choice,'y'),
