<div dir="ltr"><div><div><div><div>Dear Dimitrios,<br><br></div>The prj module really call a new process where you cannot interact from your main script. I suggest a workaround: hacking the *.cfg file through your bash script.<br>
<br>#!/bin/bash<br>

for CLIMATE in /home/dsfakianakis/Elyros/ClimateFiles/*.clm<br>   do<br></div>   CFG_FILE=Elyros_$( basename $CLIMATE .clm ).cfg<br></div>   sed -e &quot;s#^\*clm .*#*clm $CLIMATE#&quot; &lt; Elyros.cfg &gt; $CFG_FILE<br>
</div>   done<br><div><div><div><div><br></div><div>This will create as many *.cfg file as you have *.clm files. You can then play with each of them.<br><br></div><div>I hope you will find this convenient.<br></div><div>Best regards,<br>
<br></div><div>Olivier Bounhoure<br></div></div></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/12/12 Dimitrios Sfakianakis <span dir="ltr">&lt;<a href="mailto:dimitrios.sfakianakis@strath.ac.uk" target="_blank">dimitrios.sfakianakis@strath.ac.uk</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Dear List,<br>
<br>
I am currently developing a bash script to automate a process. I&#39;m opening the file in text mode and when selecting a different climate file, the clm module opens in a new window (a new command line where clm is in text mode). In this new command line the commands in my script are not executed.<br>

<br>
Has anyone encountered this problem? Do you know if it&#39;s possible to input in this new command window?<br>
<br>
Here is the script. The problem appears on the 12th line.<br>
<br>
#!/bin/bash<br>
<br>
for i in `ls /home/dsfakianakis/Elyros/ClimateFiles/*.clm`<br>
do<br>
<br>
prj -mode text -file Elyros.cfg &lt;&lt; XZZ<br>
b<br>
a<br>
b<br>
&lt;<br>
$i<br>
#at this point the clm module open in a new window and I have to manually close it for the script to continue.<br>
<br>
-<br>
y<br>
y<br>
-<br>
-<br>
XZZ<br>
<br>
done<br>
<br>
<br>
Thanks again for the support!!<br>
<br>
Kind regards,<br>
<br>
Dimitrios Sfakianakis MEng<br>
Research Assistant, Dept. Naval Architecture and Marine Engineering, University of Strathclyde<br>
Kelvin Hydrodynamics Laboratory, Acre Road, Glasgow, G20 0TL<br>
T: +44 (0) 141 330 2648 (Ext 2648)<br>
M: +44 07514271592<br>
E: <a href="mailto:dimitrios.sfakianakis@strath.ac.uk">dimitrios.sfakianakis@strath.ac.uk</a><br>
The University of Strathclyde is a charitable body, registered in Scotland, with registration number SC015263.<br>
<br>
_______________________________________________<br>
esp-r mailing list<br>
<a href="mailto:esp-r@lists.strath.ac.uk">esp-r@lists.strath.ac.uk</a><br>
<a href="http://lists.strath.ac.uk/mailman/listinfo/esp-r" target="_blank">http://lists.strath.ac.uk/mailman/listinfo/esp-r</a><br>
</blockquote></div><br></div>