bug#14555: Facing Some problem in uniq command

2018-10-23 Thread Assaf Gordon
close 14555 stop (triaging old bugs) On 05/06/13 09:06 AM, Bob Proulx wrote: Shahid Hussain wrote: Appreciate your quick reply. What exactly i m doing is there are so many files in my product which contains some data in "name = value" format. By using some pattern i m extracting only "value"

bug#14555: Facing Some problem in uniq command

2013-06-05 Thread Bob Proulx
Shahid Hussain wrote: Appreciate your quick reply. What exactly i m doing is there are so many files in my product which contains some data in name = value format. By using some pattern i m extracting only value field from all files and redirecting the output to one temporarily file as i do

bug#14555: Facing Some problem in uniq command

2013-06-04 Thread Shahid Hussain
I have a file (named 'a')which contains following data. ; 8003 8004 8005 8010 9040 9041 9042 8336 8336 8337 8338 8338 8339 8340 8341 9000 9216 9217 9218 9219 9220 9221 9232 9233 9234 9248 9249 9250 9251 9264 9265 9280 9296 9281 9297 9001 9226 9040 9040 15008 9041 9042 15009 15010 6169 6170 18000

bug#14555: Facing Some problem in uniq command

2013-06-04 Thread Pádraig Brady
On 06/04/2013 01:07 PM, Shahid Hussain wrote: I have a file (named 'a')which contains following data. ; 8003 8004 8005 8010 9040 9041 9042 8336 8336 8337 8338 8338 8339 8340 8341 9000 9216 9217 9218 9219 9220 9221 9232 9233 9234 9248 9249 9250 9251 9264 9265 9280

bug#14555: Facing Some problem in uniq command

2013-06-04 Thread Eric Blake
tag 14555 moreinfo thanks On 06/04/2013 06:07 AM, Shahid Hussain wrote: I have a file (named 'a')which contains following data. 9041 9042 8336 ... 9041 Ouch. Your file is not sorted. Therefore, 9041 is NOT unique when run through 'uniq', which only compares adjacent lines. And Below

bug#14555: Facing Some problem in uniq command

2013-06-04 Thread Shahid Hussain
Hi, Appreciate your quick reply. What exactly i m doing is there are so many files in my product which contains some data in name = value format. By using some pattern i m extracting only value field from all files and redirecting the output to one temporarily file as i do not want any value to

Problem with uniq command

2007-02-22 Thread Miroslaw Kozielski
Hello, I think I found a bug in 'uniq' command. I have a text file: bla.txt / [EMAIL PROTECTED]:~/tmp$ cat bla2 ba111. ba112. bs112. bm123. ba123. ba111. /After use option - c ( recede each output line with a count of the number of times the line occurred in the input) I receive wrong

Re: Problem with uniq command

2007-02-22 Thread Philip Rowlands
On Wed, 21 Feb 2007, Miroslaw Kozielski wrote: I think I found a bug in 'uniq' command. I have a text file: bla.txt / [EMAIL PROTECTED]:~/tmp$ cat bla2 ba111. ba112. bs112. bm123. ba123. ba111. /After use option - c ( recede each output line with a count of the number of times the line

Re: Problem with uniq command

2007-02-22 Thread Andreas Schwab
Miroslaw Kozielski [EMAIL PROTECTED] writes: /I think that output should be: /*2 ba111*. 1 ba112. 1 bs112. 1 bm123. 1 ba123. / How can I resolve this problem? From the coreutils docs: The input need not be sorted, but repeated input lines are detected only if