May 20, 2003 #1 rvarman IS-IT--Management Apr 24, 2003 91 FR Hi, In a loop (ksh), i can't able to read my last line. While read line do echo done < file Can anyone give me your ideas Thanks
Hi, In a loop (ksh), i can't able to read my last line. While read line do echo done < file Can anyone give me your ideas Thanks
May 20, 2003 #2 KenCunningham Technical User Mar 20, 2001 8,475 GB for line in `tail -1 file` do echo $line done seems to do the trick. HTH. Upvote 0 Downvote
May 20, 2003 Thread starter #3 rvarman IS-IT--Management Apr 24, 2003 91 FR Merci beaucoup, Really it works fine. Thank you very much Upvote 0 Downvote