This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 5 matches

by pranjal_ccna961
Mon Mar 02, 2009 4:19 am
Forum: Scripting Help
Topic: how to remove duplicate items from a list
Replies: 5
Views: 2897

[lsort -unique] is working to sort out duplicate names in the one line. But, if the loops encounter the same name in different line, its getting in the list. so the list still contains the duplicate names.
by pranjal_ccna961
Mon Mar 02, 2009 12:27 am
Forum: Scripting Help
Topic: how to remove duplicate items from a list
Replies: 5
Views: 2897

puts -nonewline "Choose Input File Name: " flush stdout set myString [gets stdin] set fp [open $myString r] set data [read $fp] close $fp puts -nonewline "Choose Cell: " flush stdout set cell [gets stdin] puts -nonewline "Output File: " flush stdout set output [gets std...
by pranjal_ccna961
Sun Mar 01, 2009 9:10 am
Forum: Scripting Help
Topic: how to remove duplicate items from a list
Replies: 5
Views: 2897

how to remove duplicate items from a list

how to remove duplicate items from a list ? The list is receiving the input through a resultant loop. If i use "lsort -unique", it gives me for that particlur loop run. If the same item is repeated next time in the loop, its not taking. Can anyone suggest me something. I figured out "...
by pranjal_ccna961
Mon Feb 23, 2009 12:27 am
Forum: Scripting Help
Topic: how to remove duplicate names in the o/p file.
Replies: 2
Views: 1986

how to remove duplicate names in the o/p file.

Hi, I am giving a file (in) as input and sorting out the desired matched pattern in a different file(out). Since I am getting the output in loop, I am unable to remove the duplicate item. set in [open filename_1 r] set data [read $in] close $in set data [split $data "\n"] foreach line $dat...
by pranjal_ccna961
Wed Feb 18, 2009 4:49 am
Forum: Script Requests
Topic: How to make random pattern selection in given text file
Replies: 2
Views: 3028

How to make random pattern selection in given text file

How to make random pattern selection in given text file