Kevin Reiter wrote: > Follow-up question: Is there a quick and dirty way to check for duplicate entries, and eliminate them if they exist? > > For example: > > 1 > 1 > 2 > 3 > 3 > 3 > 4 > 5 > > I need: 1,2,3,4,5 > > Is there a quick check/solution for this? > uniq should work, no? -- james