Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
91 views

sort unique urls from log

I need to get the unique URLs from a web log and then sort them. I was thinking of using grep, uniq, sort command and output this to another file I executed this command: cat access.log | awk ...
6
votes
5answers
2k views

Is there a way to 'uniq' by column?

i've a .csv file like this : stack2@domain.com,2009-11-27 01:05:47.893000000,xx2.net,127.0.0.1 overflow@domain2.com,2009-11-27 00:58:29.793000000,xx3.net,255.255.255.0 overflow@domain2.com,2009-11-27 ...
4
votes
5answers
399 views

Sort & uniq in Linux shell

What is the difference between the following to commands? sort -u FILE sort FILE | uniq Thanks!
4
votes
1answer
599 views

I can't seem to get the XPATH right for XSD UNIQE Constraint

I've been trying to get the UNIQUE constraint placed on some attributes i have in a fairly basic XSD Schema. I'm using XMLSpy and i'm wanting to put a unique constraint around TEMPLATE.ID for my nodes ...
3
votes
5answers
357 views

Removing lines containing a unique first field with awk?

Looking to print only lines that have a duplicate first field. e.g. from data that looks like this: 1 abcd 1 efgh 2 ijkl 3 mnop 4 qrst 4 uvwx Should print out: 1 abcd 1 efgh 4 qrst 4 uvwx (FYI - ...
2
votes
2answers
37 views

merging 2 files into a third one, using columns as index and merging lines too

I've been studying awk and i've come upon a problem i'm not being able to solve, please help if you can. I have 2 files I generated using awk, sort and uniq -c. File 1 is in the format: 1 aaa.c ...
2
votes
3answers
110 views

explain one expression of Ruby Array uniq method

c = %w(a b c d) 1.8.7 :025 > c.uniq {|x|x[/^a/]} => ["a", "b"] 1.8.7 :026 > c.uniq {|x|x[/^b/]} => ["a", "b"] 1.8.7 :027 > c.uniq {|x|x[/^c/]} => ["a", "c"] 1.8.7 :029 > c.uniq ...
2
votes
4answers
185 views

Ruby, get uniq slice from combination

What I have a = [1,2,3,4] => [1, 2, 3, 4] b = a.combination(2).to_a => [[1, 2], [1, 3], [1, 4], [2, 3], [2, 4], [3, 4]] b.each_slice(2).to_a => [[[1, 2], [1, 3]], [[1, 4], [2, 3]], ...
2
votes
2answers
430 views

Best way to generate a unique ID in java

What is the best way to generate a unique ID in java. People generally use String id = System.currentTimeMillis+ someStaticCounter; But this approach would require synchronization in multithreaded ...
2
votes
3answers
273 views

calling uniq and sort in different orders in shell

is there a difference in the order of uniq and sort when calling them in a shell script? i’m talking here about time- and space-wise. grep 'somePattern' | uniq | sort vs. grep 'somePattern' | sort ...
1
vote
4answers
73 views

Compare two lines in same file

Given a file like the following:- 01/09/2005 02/09/2005 03/09/2006 03/09/2006 I wish to compare if the last two lines are the same, and return a 1 if so or a 0 if they are not. I can get the last ...
1
vote
1answer
15 views

How to force uniq to distinquish between em- and en-dashes?

uniq (GNU coreutils 8.5) does not seem to distinguish between em- and en-dashes: $ echo -e "a–b\na—b" | uniq -c 2 a–b Is there any way to force this distinction? I've tried various settings for ...
1
vote
2answers
95 views

perl print out uniq lines

I've been challenged with a mathematics problem. Given ten numbers (in this case, numbers from 1 to 10), how many unique combinations of six numbers are there? The short answer is 210. However, I ...
1
vote
2answers
105 views

Replacing an SQL query with unix sort, uniq and awk

We currently have some data on an HDFS cluster on which we generate reports using Hive. The infrastructure is in the process of being decommissioned and we are left with the task of coming up with an ...
1
vote
2answers
130 views

sort and uniq csv files

using linux commands, I have a quoted csv file which I sorted by first column and then second column, now I want to remove duplicates where they match in the first and second column, how can this be ...
1
vote
2answers
385 views

how to sort based on a column but uniq based on another column?

He all, I have a file having some columns. I would like to do sort for column 2 then apply uniq for column 1. I found this post talking about sort and uniq for the same column but my problem is a ...
1
vote
3answers
220 views

Need prompt help with using AWK / sort / uniq to remove lines that have identical values in first column from a simple text file

I have a bunch of text files with the following contents in column1 and column2 (separated by a space): address0 data0 address1 data1 . . . addressN dataN All data values are unique (random), ...
1
vote
1answer
73 views

uniq : only when different by more than 1 character OR case

I got a text file with LOTS of names. I want a list of all the strings(lines) that is either 1) Different in CASE (i.e audi vs AuDI) 2) Different by more than 1 character ie (mygoo VS my-goo) Any ...
1
vote
3answers
186 views

Merge results from uniq -c

I have many files with results of command: uniq -c some_file > some_file.out For example: 1.out: 1 a 2 b 4 c 2.out 2 b 8 c I would like to merge these results, so I get: 1 a 4 b 12 ...
1
vote
3answers
154 views

To find repeated matches by `uniq -d`

My data as /tmp/1 9367543 9105616 9108177 8948074 8860323 9170406 9105616 I run and I get nothing cat /tmp/1 | uniq -d This is strange, since uniq -d should -d Only output lines that are ...
0
votes
3answers
40 views

How do you do custom formatting with the uniq -c option?

From wikipedia: uniq -c Generate an output report in default style except that each line is preceded by a count of the number of times it occurred. If this option is specified, the -u and -d options ...
0
votes
2answers
27 views

Using Bash For Loop to Search File for Unique Line

I have a file sortedfile.txt with a list of file names. I am looking to search another file , ngfilelist.txt containing a file list for all duplicates files in sortedfile.txt. I am using this command ...
0
votes
4answers
101 views

Print the first line of uniq output

>cat testing.txt aaa bbb aaa ccc xxx yyy zzz ppp uuu vvv uuu ttt I want to display the uniq lines based on the first field and output oly the first occurence of the line aaa bbb xxx yyy zzz ppp ...
0
votes
3answers
252 views

iPad - Apple reject if there is only one orientation?

I have developed my app for only one orientation (vertical). Will apple reject my application? Thank you, Mo
0
votes
5answers
2k views

PHP: why uniqid returned value is only 13 digits long?

uniqid() function returns a 13 digits long hexadecimal number. According to the spec in php.net site, the function uses microtime to generate the unique value. But microtime returns numbers in string ...
0
votes
3answers
267 views

Why does uniq! return nil if there are no duplicates

I'm just starting with Ruby and I personally find the following to be a violation of the "principle of least surprise". And that is, quoting from the documentation, that uniq! "removes duplicate ...
0
votes
1answer
155 views

dictionary data insert or select (oracle, java)

I have an table (in ORADB) containing two columns: VARCHAR unique key and NUMBER unique key generated from an sequence. I need my Java code to constantly (and in parallel) add records to this column ...
-1
votes
3answers
82 views

Uniq and counts

Have a file with 2 columns, need to use uniq on column 1 only and print both the columns in the results as well as the count of the occurrences (with -c). Example: 1 a 1 a 2 a 3 c 4 d 2 1 a 1 2 ...
-1
votes
2answers
53 views

how -f , -s options work with the uniq command?

According to manual page for uniq the -f option is for skipping fields the -s option for skipping characters Can someone explain with relevant examples, how actually these two options work?