The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
reading text file line by line MizzGail Shell Programming and Scripting 6 04-14-2008 03:58 AM
Line by line file reading... and more! ProFiction Shell Programming and Scripting 6 07-26-2007 08:32 AM
reading each line from a file ragha81 Shell Programming and Scripting 5 04-13-2007 05:25 PM
Reading line by line from a file tej.buch Shell Programming and Scripting 2 01-22-2006 11:50 PM
Reading line by line from file. akpopa UNIX for Dummies Questions & Answers 4 08-30-2001 07:20 PM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1  
Old 08-07-2007
Registered User
 

Join Date: Jul 2006
Posts: 189
Reading line from file - TCL

I Have output of ps -ef in file. while reading from file, it reads one word but i want to read the full line.

Is there any way to set IFS in TCL as we set in Shell.

Thanks

Ajay Kumar
Reply With Quote
Forum Sponsor
  #2  
Old 08-08-2007
sysgate's Avatar
Unix based
 

Join Date: Nov 2006
Location: /root
Posts: 1,197
The following peice of code will read and print out the contents of a file line by line:
Code:
set f [open somefile.txt]
while {1} {
    set line [gets $f]
    if {[eof $f]} {
        close $f
        break
    }
    puts "Read line: $line"
}
can you show how do you read currently ?
Reply With Quote
  #3  
Old 08-09-2007
Registered User
 

Join Date: Jul 2006
Posts: 189
Thanks sysgate, it works
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 01:39 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0