Sign in
eclipse
/
dash
/
org.eclipse.dash.dashboard
/
c636a4807152876c3b35a0d944522afe4b67dd8f
/
.
/
commits
/
batch
/
uniq.sh
blob: 3262d28cb716d3d93bbfad0482a4ebb7515111b9 [
file
] [
log
] [
blame
]
#!/bin/sh
# Copyright (c) 2006 Eclipse Foundation, made available under EPL v1.0
# Contributors Ward Cunningham, Bjorn Freeman-Benson
#
# usage:
(
cd words
for
i
in
*
do
echo uniqing $i
sort $i
|
uniq
>
../
uniq
/
xx
mv
../
uniq
/
xx
../
uniq
/
$i
done
)