Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ksh script that returns a long list of values, newline separated, and I want to see only the unique/distinct values. It is possible to do this?

For example, say my output is file suffixes in a directory:

tar
gz
java
gz
java
tar
class
class

I want to see a list like:

tar
gz
java
class
share|improve this question

6 Answers

up vote 66 down vote accepted

You might want to look at the uniq and sort applications.

./yourscript.ksh | sort | uniq

(FYI, yes, the sort is necessary in this command line, uniq only strips duplicate lines that are immediately after each other)

EDIT:

Contrary to what has been posted by Aaron Digulla in relation to uniq's commandline options:

Given the following input:

class
jar
jar
jar
bin
bin
java

uniq will output all lines exactly once:

class
jar
bin
java

uniq -d will output all lines that appear more than once, and it will print them once:

jar
bin

uniq -u will output all lines that appear exactly once, and it will print them once:

class
java
share|improve this answer
Does the job, thanks! – Brabster Mar 6 '09 at 10:35
./script.sh | sort -u

This is the same as monoxide's answer, but a bit more concise.

share|improve this answer

For larger data sets where sorting may not be desirable, you can also use the following perl script:

./yourscript.ksh | perl -ne 'if (!defined $x{$_}) { print $_; $x{$_} = 1; }'

This basically just remembers every line output so that it doesn't output it again.

It has the advantage over the "sort | uniq" solution in that there's no sorting required up front.

share|improve this answer
2  
Note that sorting of a very large file is not an issue per se with sort; it can sort files which are larger than the available RAM+swap. Perl, OTOH, will fail if there are only few duplicates. – Aaron Digulla Mar 6 '09 at 11:06
Yes, it's a trade-off depending on the expected data. Perl is better for huge dataset with many duplicates (no disk-based storage required). Huge dataset with few duplicates should use sort (and disk storage). Small datasets can use either. Personally, I'd try Perl first, switch to sort if it fails. – paxdiablo Mar 6 '09 at 11:33
Since sort only gives you a benefit if it has to swap to disk. – paxdiablo Mar 6 '09 at 11:34
I like the ability to not sort the list, thanks – Davide Jun 30 '11 at 16:51
3  
This is great when I want the first occurrence of every line. Sorting would break that. – Bluu May 10 '12 at 19:30

Pipe them through sort and "uniq". This removes all duplicates.

"uniq -d" gives only the duplicates, "uniq -u" gives only the unique ones (strips single items).

share|improve this answer
gotta sort first by the looks of it – Brabster Mar 6 '09 at 10:35
Yes, you do. Or more accurately, you need to group all the duplicate lines together. Sorting does this by definition though ;) – Matthew Scharley Mar 6 '09 at 10:37
Also, uniq -u is NOT the default behaviour (see the edit in my answer for details) – Matthew Scharley Mar 6 '09 at 10:49

With zsh you can do this:

zsh-4.3.9[t]% cat file
tar
gz
java
gz
java
tar
class
class
zsh-4.3.9[t]% u=($(<file)) 
zsh-4.3.9[t]% print -l ${(u)u[@]}
tar
gz
java
class

Or you can use AWK:

zsh-4.3.9[t]% awk '!_[$0]++' file    
tar
gz
java
class
share|improve this answer

Unique, as requested, (but not sorted);
uses fewer system resources for less than ~70 elements (as tested with time);
written to take input from stdin,
(or modify and include in another script):
(Bash)

bag2set () {
    # Reduce a_bag to a_set.
    local -i i j n=${#a_bag[@]}
    for ((i=0; i < n; i++)); do
        if [[ -n ${a_bag[i]} ]]; then
            a_set[i]=${a_bag[i]}
            a_bag[i]=$'\0'
            for ((j=i+1; j < n; j++)); do
                [[ ${a_set[i]} == ${a_bag[j]} ]] && a_bag[j]=$'\0'
            done
        fi
    done
}
declare -a a_bag=() a_set=()
stdin="$(</dev/stdin)"
declare -i i=0
for e in $stdin; do
    a_bag[i]=$e
    i=$i+1
done
bag2set
echo "${a_set[@]}"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.