<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-size:small">As always, thanks.  I checked the change in to GIT --  I learn something new every day ! ...Phyllis<br></div><div class="gmail_default" style="font-size:small"></div></div><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
> > >       CPUS=`nproc`<br>
> > > Is that correct?<br>
><br>
> Yes, please change it to<br>
>       CPUS=nproc<br>
><br>
> The single quotes are not needed, those are to prevent shell expansion<br>
> within the quotes.<br>
<br>
Attention, it is absolutely not the same, whether in backquotes or unquoted.<br>
Backquotes mean that the shell tries to execute the quoted contents as a<br>
command and substitute the standard output of that command as the result.<br>
<br>
Please compare and see the difference:<br>
<br>
mri.sge:~>nproc<br>
2<br>
mri.sge:~>CPUS=nproc<br>
mri.sge:~>echo $CPUS<br>
nproc<br>
mri.sge:~>CPUS=`nproc`<br>
mri.sge:~>echo $CPUS<br>
2<br>
<br>
(there are 2 cores on the test computer, mri.sge:~> being the shell prompt)<br>
_______________________________________________________________________________<br>
<br>
Georgy Salnikov<br>
NMR Group<br>
Novosibirsk Institute of Organic Chemistry<br>
Lavrentjeva, 9, 630090 Novosibirsk, Russia<br>
Phone   +7-383-3307864<br>
Email   <a href="mailto:sge@nmr.nioch.nsc.ru" target="_blank">sge@nmr.nioch.nsc.ru</a><br>
_______________________________________________________________________________<br>
<br>
-- <br>
Cin mailing list<br>
<a href="mailto:Cin@lists.cinelerra-gg.org" target="_blank">Cin@lists.cinelerra-gg.org</a><br>
<a href="https://lists.cinelerra-gg.org/mailman/listinfo/cin" rel="noreferrer" target="_blank">https://lists.cinelerra-gg.org/mailman/listinfo/cin</a><br>
</blockquote></div></div>