<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Aug 28, 2013 at 11:31 AM, José María <span dir="ltr">&lt;<a href="mailto:jmamuedo@gmail.com" target="_blank">jmamuedo@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Hi!<br><br>I would like to know if there are a way to write only one command line to obtain the expected results. I explain:<div>
<br></div><div>When you write this :  <span style><b>$ proj +proj=utm +zone=13 +ellps=WGS84 -f %12.6f</b></span>  </div>
<div><br></div><div><span style>If you want to recieved the output data:<b> </b></span><span style><b>500000.000000 4427757.218739</b></span><br></div><div><br></div><div>You must to write in another line with the input data: <span style><b>-105 40</b></span></div>

<div><span style><b><br></b></span></div><div><span style>Is it possible to write concatenated command line as this stile?:</span></div><div><span style><b><br></b></span></div>
<div><span style><b>$ proj +proj=utm +zone=13 +ellps=WGS84 -f %12.6f</b></span><b>  |  </b><b style>-105 40</b><br></div><div><b style><br></b></div><div><br></div></div></blockquote><div><br></div><div>Yes, but the syntax you have is not quite right.  Try this:</div>
<div><br></div><div><br></div><div> <b>$ echo -105 40 | proj +proj=utm +zone=13 +ellps=WGS84 -f %12.6f</b><b>  </b></div><div><b><br></b></div><div>carl</div></div></div></div>