<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#330000">
    <div class="moz-cite-prefix">On 26/06/2012 12:41, Tima wrote:<br>
    </div>
    <blockquote cite="mid:1340707285013-4024440.post@n3.nabble.com"
      type="cite">
      <pre wrap="">Hi, 

Does anybody know how to read and save the last line from a file.
For example, I have this /file.txt/
1.0
2.0
3.0
4.0
5.0
6.0


--
View this message in context: <a class="moz-txt-link-freetext" href="http://mailinglists.scilab.org/Reading-the-llast-line-from-a-file-tp4024440.html">http://mailinglists.scilab.org/Reading-the-llast-line-from-a-file-tp4024440.html</a>
Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com.

--
To unsubscribe from this mailing-list, please send an empty mail to
<a class="moz-txt-link-abbreviated" href="mailto:users-unsubscribe@lists.scilab.org">users-unsubscribe@lists.scilab.org</a>
To check the archives of this mailing list, see
<a class="moz-txt-link-freetext" href="http://mailinglists.scilab.org/">http://mailinglists.scilab.org/</a>
</pre>
    </blockquote>
    you can always do a <br>
    <br>
    foo = read_csv("file.txt")<br>
    foo($)<br>
    <br>
  </body>
</html>